Completed
Push — master ( b446a0...d1af8d )
by Maxim
04:01
created
src/Weew/Commander/ContainerAware/Invokers/CommandHandlerInvoker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     protected function invokeHandler($handler, $command) {
39 39
         return $this->container->callMethod(
40
-            $handler, 'handle', ['command' => $command, 'task' => $command]
40
+            $handler, 'handle', [ 'command' => $command, 'task' => $command ]
41 41
         );
42 42
     }
43 43
 }
Please login to merge, or discard this patch.
src/Weew/Commander/ContainerAware/Invokers/CallableHandlerInvoker.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      */
29 29
     protected function invokeHandler(callable $handler, $command) {
30 30
         return $this->container->call(
31
-            $handler, ['command' => $command, 'task' => $command]
31
+            $handler, [ 'command' => $command, 'task' => $command ]
32 32
         );
33 33
     }
34 34
 }
Please login to merge, or discard this patch.