From 806e01ed471d843ddc354f62f2aed507f91d33e4 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 30 Jan 2018 08:30:39 -0600 Subject: [PATCH] formatting --- src/Illuminate/Contracts/Bus/Dispatcher.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Illuminate/Contracts/Bus/Dispatcher.php b/src/Illuminate/Contracts/Bus/Dispatcher.php index 561b25c37870..12ed2226b416 100644 --- a/src/Illuminate/Contracts/Bus/Dispatcher.php +++ b/src/Illuminate/Contracts/Bus/Dispatcher.php @@ -21,14 +21,6 @@ public function dispatch($command); */ public function dispatchNow($command, $handler = null); - /** - * Set the pipes commands should be piped through before dispatching. - * - * @param array $pipes - * @return $this - */ - public function pipeThrough(array $pipes); - /** * Determine if the given command has a handler. * @@ -45,6 +37,14 @@ public function hasCommandHandler($command); */ public function getCommandHandler($command); + /** + * Set the pipes commands should be piped through before dispatching. + * + * @param array $pipes + * @return $this + */ + public function pipeThrough(array $pipes); + /** * Map a command to a handler. *