Files
kiri-http-server/Abstracts/Server.php
T
2023-12-12 15:35:34 +08:00

23 lines
250 B
PHP

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