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

19 lines
190 B
PHP
Raw Normal View History

2021-10-19 15:07:02 +08:00
<?php
namespace Server\Events;
use Swoole\Server;
class OnBeforeShutdown
{
/**
* @param Server|null $server
*/
2021-10-29 14:10:53 +08:00
public function __construct(public ?Server $server = null)
2021-10-19 15:07:02 +08:00
{
}
}