/var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Foundation/Bus
NameSizeModeActions
Dispatchable.php25420644editdlrm
DispatchesJobs.php9860644editdlrm
PendingChain.php36170644editdlrm
PendingClosureDispatch.php3720644editdlrm
PendingDispatch.php40060644editdlrm
Edit: /var/www/flurhymez/vendor/laravel/framework/src/Illuminate/Foundation/Bus/DispatchesJobs.php (986B)
dispatch($job); } /** * Dispatch a job to its appropriate handler in the current process. * * @param mixed $job * @return mixed * * @deprecated Will be removed in a future Laravel version. */ public function dispatchNow($job) { return app(Dispatcher::class)->dispatchNow($job); } /** * Dispatch a job to its appropriate handler in the current process. * * Queueable jobs will be dispatched to the "sync" queue. * * @param mixed $job * @return mixed */ public function dispatchSync($job) { return app(Dispatcher::class)->dispatchSync($job); } }