diff --git a/Bus/Dispatcher.php b/Bus/Dispatcher.php index 3793174..bb55d3d 100644 --- a/Bus/Dispatcher.php +++ b/Bus/Dispatcher.php @@ -4,6 +4,14 @@ interface Dispatcher { + /** + * Create a new chain of queueable jobs. + * + * @param \Illuminate\Support\Collection|array|null $jobs + * @return mixed + */ + public function chain($jobs = null); + /** * Dispatch a command to its appropriate handler. *