Файл: gapps/vendor/laravel/framework/src/Illuminate/Queue/Events/JobExceptionOccurred.php
Строк: 49
<?php
namespace IlluminateQueueEvents;
class JobExceptionOccurred
{
/**
* The connection name.
*
* @var string
*/
public $connectionName;
/**
* The job instance.
*
* @var IlluminateContractsQueueJob
*/
public $job;
/**
* The data given to the job.
*
* @var array
*/
public $data;
/**
* The exception instance.
*
* @var Throwable
*/
public $exception;
/**
* Create a new event instance.
*
* @param string $connectionName
* @param IlluminateContractsQueueJob $job
* @param array $data
* @param Throwable $exception
* @return void
*/
public function __construct($connectionName, $job, $data, $exception)
{
$this->job = $job;
$this->data = $data;
$this->exception = $exception;
$this->connectionName = $connectionName;
}
}