Files
kiri-http-server/Events/OnAfterWorkerStart.php
T
2023-12-02 17:29:24 +08:00

20 lines
271 B
PHP

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