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

19 lines
184 B
PHP
Raw Normal View History

2021-11-03 15:17:52 +08:00
<?php
namespace Server\Events;
use Swoole\Server;
class OnShutdown
{
/**
* @param Server|null $server
*/
public function __construct(public ?Server $server = null)
{
}
}