2020-08-31 01:27:08 +08:00
|
|
|
<?php
|
2020-10-29 18:17:25 +08:00
|
|
|
declare(strict_types=1);
|
2020-08-31 01:27:08 +08:00
|
|
|
|
2021-09-18 16:54:39 +08:00
|
|
|
namespace Http\Handler\Abstracts;
|
2020-08-31 01:27:08 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use Swoole\Coroutine;
|
|
|
|
|
|
|
|
|
|
abstract class BaseContext
|
|
|
|
|
{
|
2020-10-29 18:17:25 +08:00
|
|
|
protected static array $pool = [];
|
2020-08-31 01:27:08 +08:00
|
|
|
}
|