Files
kiri-http-server/Events/OnStart.php
T
2022-01-09 03:49:02 +08:00

19 lines
186 B
PHP

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