| 1 | <?php |
||
| 10 | trait WatchableDispatchesJobs |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Dispatch a job to its appropriate handler. |
||
| 14 | * |
||
| 15 | * @param mixed $job |
||
| 16 | * @return mixed |
||
| 17 | */ |
||
| 18 | public function dispatch($job, array $meta = []) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Dispatch a command to its appropriate handler in the current process. |
||
| 29 | * |
||
| 30 | * @param mixed $job |
||
| 31 | * @return mixed |
||
| 32 | */ |
||
| 33 | public function dispatchNow($job) |
||
| 39 | } |
||
| 40 |