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