Files
kiri-core/HttpServer/Abstracts/BaseContext.php
T
2020-10-29 18:17:25 +08:00

14 lines
157 B
PHP

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