PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Queue
/
Events
<?php namespace Illuminate\Queue\Events; class WorkerStopping { /** * The worker exit status. * * @var int */ public $status; /** * The worker options. * * @var \Illuminate\Queue\WorkerOptions|null */ public $workerOptions; /** * Create a new event instance. * * @param int $status * @param \Illuminate\Queue\WorkerOptions|null $workerOptions * @return void */ public function __construct($status = 0, $workerOptions = null) { $this->status = $status; $this->workerOptions = $workerOptions; } }
[-] JobQueued.php
[edit]
[+]
..
[-] WorkerStopping.php
[edit]
[-] JobProcessed.php
[edit]
[-] JobRetryRequested.php
[edit]
[-] Looping.php
[edit]
[-] QueueBusy.php
[edit]
[-] JobProcessing.php
[edit]
[-] JobReleasedAfterException.php
[edit]
[-] JobFailed.php
[edit]
[-] JobExceptionOccurred.php
[edit]