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

24 lines
254 B
PHP
Raw Normal View History

2021-08-03 18:18:09 +08:00
<?php
namespace Server\Events;
use Swoole\Server;
/**
*
*/
class OnWorkerStart
{
2021-08-29 01:18:42 +08:00
/**
* @param Server $server
* @param int $workerId
*/
public function __construct(public Server $server, public int $workerId)
{
}
2021-08-03 18:18:09 +08:00
}