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

namespace IlluminateQueueEvents;

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

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

    
/**
     * The data given to the job.
     *
     * @var array
     */
    
public $data;

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