13 lines
143 B
PHP
13 lines
143 B
PHP
<?php
|
|
|
|
namespace Server\Events;
|
|
|
|
class OnBeforeWorkerStart
|
|
{
|
|
|
|
public function __construct(public int $workerId)
|
|
{
|
|
}
|
|
|
|
}
|