24 lines
267 B
PHP
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)
|
|
{
|
|
}
|
|
|
|
|
|
}
|