Files
kiri-core/http-server/Abstracts/BaseContext.php
T
2021-10-25 18:39:30 +08:00

14 lines
153 B
PHP

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