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