File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Bus
Upload
[..]
Dispatchable.php (3.05 KB)
Edit
Rename
Del
DispatchesJobs.php (573 B)
Edit
Rename
Del
PendingClosureDispatch.php (372 B)
Edit
Rename
Del
PendingDispatch.php (6.61 KB)
Edit
Rename
Del
Edit: PendingClosureDispatch.php
<?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; } }
Simpan