Files
kiri-core/Server/Events/OnWorkerStart.php
T
2021-08-03 18:18:09 +08:00

24 lines
219 B
PHP

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