Files
kiri-core/kiri-engine/Abstracts/BaseContext.php
T
2021-10-26 10:56:03 +08:00

14 lines
151 B
PHP

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