Files
kiri-http-server/Events/OnWorkerError.php
T
2021-11-03 15:17:52 +08:00

27 lines
378 B
PHP

<?php
namespace Server\Events;
use Swoole\Server;
/**
*
*/
class OnWorkerError
{
/**
* @param Server $server
* @param int $worker_id
* @param int $worker_pid
* @param int $exit_code
* @param int $signal
*/
public function __construct(public Server $server, public int $worker_id, public int $worker_pid, public int $exit_code, public int $signal)
{
}
}