Файл: vendor/laravel/framework/src/Illuminate/Queue/Events/JobReleasedAfterException.php
Строк: 35
<?php
namespace IlluminateQueueEvents;
class JobReleasedAfterException
{
/**
* Create a new event instance.
*
* @param string $connectionName The connection name.
* @param IlluminateContractsQueueJob $job The job instance.
* @param int|null $backoff The backoff delay.
* @param Throwable|null $exception The exception that caused the job to be released.
*/
public function __construct(
public $connectionName,
public $job,
public $backoff = null,
public $exception = null,
) {
}
}