Files

20 lines
271 B
PHP
Raw Permalink Normal View History

2022-01-09 03:49:02 +08:00
<?php
2022-01-10 11:39:55 +08:00
namespace Kiri\Server\Events;
2022-01-09 03:49:02 +08:00
2023-12-02 17:29:24 +08:00
use Swoole\Server;
2022-01-09 03:49:02 +08:00
class OnAfterWorkerStart
{
2023-11-22 09:26:18 +08:00
/**
2023-12-02 17:29:24 +08:00
* @param Server $server
2023-11-22 09:26:18 +08:00
* @param int $workerId
*/
2023-12-02 17:29:24 +08:00
public function __construct(public Server $server, public int $workerId)
2023-11-22 09:26:18 +08:00
{
}
2022-01-09 03:49:02 +08:00
}