Files
kiri-http-server/Abstracts/Server.php
T
2023-07-31 23:08:58 +08:00

27 lines
270 B
PHP

<?php
namespace Kiri\Server\Abstracts;
use Exception;
use Kiri;
/**
* Class Server
* @package Server\Abstracts
*/
abstract class Server
{
/**
* Server constructor.
* @throws Exception
*/
public function __construct()
{
}
}