PATH:
home
/
lab2454c
/
bancmils.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Bus
<?php namespace Illuminate\Foundation\Bus; use Closure; class PendingClosureDispatch extends PendingDispatch { /** * Add a callback to be executed if the job fails. * * @param \Closure $callback * @return $this */ public function catch(Closure $callback) { $this->job->onFailure($callback); return $this; } }
[-] PendingClosureDispatch.php
[edit]
[+]
..
[-] Dispatchable.php
[edit]
[-] DispatchesJobs.php
[edit]
[-] .htaccess
[edit]
[-] PendingDispatch.php
[edit]
[-] PendingChain.php
[edit]