Passed
Push — master ( d97bf6...9f0001 )
by Sebastiaan
03:49
created
src/Command/Run.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         $forcedEventName = $input->getArgument('force');
53 53
 
54 54
         if ($forcedEventName) {
55
-            $events = array_filter($schedule->allEvents(), function (Event $event) use ($forcedEventName) {
55
+            $events = array_filter($schedule->allEvents(), function(Event $event) use ($forcedEventName) {
56 56
                 return $event->getName() === $forcedEventName;
57 57
             });
58 58
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
         }
87 87
 
88 88
         $result = $event->run();
89
-        if ($event instanceof Process)  {
89
+        if ($event instanceof Process) {
90 90
             $this->handleProcessOutput($result, $output);
91 91
         }
92 92
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
         }
87 87
 
88 88
         $result = $event->run();
89
-        if ($event instanceof Process)  {
89
+        if ($event instanceof Process) {
90 90
             $this->handleProcessOutput($result, $output);
91 91
         }
92 92
     }
Please login to merge, or discard this patch.