Files
kiri-http-server/Abstracts/Server.php
T

23 lines
250 B
PHP
Raw Normal View History

2022-01-09 03:49:02 +08:00
<?php
2022-01-10 11:39:55 +08:00
namespace Kiri\Server\Abstracts;
2022-01-09 03:49:02 +08:00
/**
* Class Server
* @package Server\Abstracts
*/
abstract class Server
{
2023-12-12 15:35:34 +08:00
/**
* Server constructor.
* @throws
*/
public function __construct()
{
}
2022-01-09 03:49:02 +08:00
}