Files
kiri-core/http-server/Events/OnShutdown.php
T

19 lines
177 B
PHP
Raw Normal View History

2021-08-12 14:08:40 +08:00
<?php
namespace Server\Events;
use Swoole\Server;
class OnShutdown
{
/**
2021-08-17 18:38:38 +08:00
* @param Server|null $server
2021-08-12 14:08:40 +08:00
*/
2021-08-17 18:38:38 +08:00
public function __construct(?Server $server = null)
2021-08-12 14:08:40 +08:00
{
}
}