Files
kiri-http-server/Events/OnWorkerStart.php
T
2022-06-16 17:38:22 +08:00

24 lines
267 B
PHP

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