PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Queue
/
Events
<?php namespace Illuminate\Queue\Events; class JobQueued { /** * The connection name. * * @var string */ public $connectionName; /** * The job ID. * * @var string|int|null */ public $id; /** * The job instance. * * @var \Closure|string|object */ public $job; /** * Create a new event instance. * * @param string $connectionName * @param string|int|null $id * @param \Closure|string|object $job * @return void */ public function __construct($connectionName, $id, $job) { $this->connectionName = $connectionName; $this->id = $id; $this->job = $job; } }
[-] JobQueued.php
[edit]
[+]
..
[-] WorkerStopping.php
[edit]
[-] JobProcessed.php
[edit]
[-] Looping.php
[edit]
[-] QueueBusy.php
[edit]
[-] JobProcessing.php
[edit]
[-] JobFailed.php
[edit]
[-] JobExceptionOccurred.php
[edit]