Passed
Push — master ( 8a46af...fb0167 )
by Igor
02:28
created
src/Responder/ResponderSubscriber.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 
14 14
     public function __construct(iterable $responders)
15 15
     {
16
-        $this->responders = (function (ResponderInterface ...$responders): iterable {
16
+        $this->responders = (function(ResponderInterface ...$responders): iterable {
17 17
             return $responders;
18 18
         })(...$responders);
19 19
     }
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
         $specificResponder = array_find(
27 27
             $this->responders,
28
-            function (ResponderInterface $responder) use ($meta, $result): bool {
28
+            function(ResponderInterface $responder) use ($meta, $result): bool {
29 29
                 return $responder->supports($result, $meta);
30 30
             }
31 31
         );
Please login to merge, or discard this patch.