Вход Регистрация
Файл: vendor/laravel/framework/src/Illuminate/Queue/Events/JobFailed.php
Строк: 45
<?php

namespace IlluminateQueueEvents;

class 
JobFailed
{
    
/**
     * The connection name.
     *
     * @var string
     */
    
public $connectionName;

    
/**
     * The job instance.
     *
     * @var IlluminateContractsQueueJob
     */
    
public $job;

    
/**
     * The exception that caused the job to fail.
     *
     * @var Throwable
     */
    
public $exception;

    
/**
     * Create a new event instance.
     *
     * @param  string  $connectionName
     * @param  IlluminateContractsQueueJob  $job
     * @param  Throwable  $exception
     * @return void
     */
    
public function __construct($connectionName$job$exception)
    {
        
$this->job $job;
        
$this->exception $exception;
        
$this->connectionName $connectionName;
    }
}
Онлайн: 0
Реклама