Passed
Push — master ( 2d3d0e...eda77b )
by David
02:51 queued 44s
created
src/EventCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,9 +58,9 @@
 block discarded – undo
58 58
      */
59 59
     private function getAllEventNames(): array
60 60
     {
61
-        return array_map(function (EventCommand $event) {
61
+        return array_map(function(EventCommand $event) {
62 62
             return $event->getEventName();
63
-        }, \array_filter($this->getApplication()->all(), function (Command $command) {
63
+        }, \array_filter($this->getApplication()->all(), function(Command $command) {
64 64
             return $command instanceof EventCommand && !$command->isHidden();
65 65
         }));
66 66
     }
Please login to merge, or discard this patch.