14 lines
127 B
PHP
14 lines
127 B
PHP
<?php
|
|
|
|
|
|
namespace HttpServer\Abstracts;
|
|
|
|
|
|
|
|
use Swoole\Coroutine;
|
|
|
|
abstract class BaseContext
|
|
{
|
|
protected static $pool = [];
|
|
}
|