Файл: vendor/laravel/framework/src/Illuminate/Queue/Events/WorkerStopping.php
Строк: 28
<?php
namespace IlluminateQueueEvents;
class WorkerStopping
{
/**
* Create a new event instance.
*
* @param int $status The worker exit status.
* @param IlluminateQueueWorkerOptions|null $workerOptions The worker options.
* @param IlluminateQueueWorkerStopReason|null $reason The reason why the worker is stopping.
*/
public function __construct(
public $status = 0,
public $workerOptions = null,
public $reason = null,
) {
}
}