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

19 lines
202 B
PHP
Raw Normal View History

2022-01-09 03:49:02 +08:00
<?php
namespace Server\Events;
use Swoole\Server;
class OnShutdown
{
/**
* @param Server|null $server
*/
public function __construct(public ?Server $server = null)
{
}
}