Files
kiri-core/http-server/Events/OnWorkerStart.php
T
as2252258@163.com 9da50baed0 111
2021-08-29 01:18:42 +08:00

24 lines
254 B
PHP

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