24 lines
218 B
PHP
24 lines
218 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Server\Events;
|
||
|
|
|
||
|
|
use Swoole\Server;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
class OnWorkerExit
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param Server $server
|
||
|
|
* @param int $workerId
|
||
|
|
*/
|
||
|
|
public function __construct(Server $server, int $workerId)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|