Files
kiri-core/http-server/Events/OnWorkerError.php
T
2021-08-24 18:24:46 +08:00

27 lines
343 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(Server $server, int $worker_id, int $worker_pid, int $exit_code, int $signal)
{
}
}