Files
kiri-core/http-server/Events/OnShutdown.php
T
2021-10-29 14:10:53 +08:00

19 lines
184 B
PHP

<?php
namespace Server\Events;
use Swoole\Server;
class OnShutdown
{
/**
* @param Server|null $server
*/
public function __construct(public ?Server $server = null)
{
}
}