Files
kiri-core/http-server/Events/OnWorkerError.php
T

27 lines
343 B
PHP
Raw Normal View History

2021-08-03 18:18:09 +08:00
<?php
namespace Server\Events;
use Swoole\Server;
/**
*
*/
class OnWorkerError
{
/**
* @param Server $server
2021-08-17 18:35:11 +08:00
* @param int $worker_id
* @param int $worker_pid
* @param int $exit_code
* @param int $signal
2021-08-03 18:18:09 +08:00
*/
public function __construct(Server $server, int $worker_id, int $worker_pid, int $exit_code, int $signal)
{
}
}