14 lines
159 B
PHP
14 lines
159 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Http\Handler\Abstracts;
|
|
|
|
|
|
|
|
use Swoole\Coroutine;
|
|
|
|
abstract class BaseContext
|
|
{
|
|
protected static array $pool = [];
|
|
}
|