PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Bus
<?php namespace Illuminate\Foundation\Bus; use Illuminate\Contracts\Bus\Dispatcher; trait DispatchesJobs { /** * Dispatch a job to its appropriate handler. * * @param mixed $job * @return mixed */ protected function dispatch($job) { return app(Dispatcher::class)->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 command 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); } }
[-] PendingClosureDispatch.php
[edit]
[+]
..
[-] Dispatchable.php
[edit]
[-] DispatchesJobs.php
[edit]
[-] PendingDispatch.php
[edit]
[-] PendingChain.php
[edit]