Files
kiri-core/kiri-engine/Abstracts/BaseContext.php
T

14 lines
151 B
PHP
Raw Normal View History

2021-10-25 18:25:14 +08:00
<?php
declare(strict_types=1);
2021-10-26 10:56:03 +08:00
namespace Kiri\Abstracts;
2021-10-25 18:25:14 +08:00
use Swoole\Coroutine;
abstract class BaseContext
{
protected static array $pool = [];
}