17 lines
196 B
PHP
17 lines
196 B
PHP
<?php
|
|
|
|
namespace Kiri\Server\Events;
|
|
|
|
class OnAfterWorkerStart
|
|
{
|
|
|
|
|
|
/**
|
|
* @param int $workerId
|
|
*/
|
|
public function __construct(public int $workerId)
|
|
{
|
|
}
|
|
|
|
}
|