Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Bus
:
PendingClosureDispatch.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }