Files
kiri-core/kiri-engine/Abstracts/BaseContext.php
T
2022-01-09 03:50:38 +08:00

14 lines
164 B
PHP

<?php
declare(strict_types=1);
namespace Kiri\Abstracts;
use Swoole\Coroutine;
abstract class BaseContext
{
protected static array $pool = [];
}