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

24 lines
254 B
PHP
Raw Normal View History

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