Passed
Push — master ( 05de54...939a25 )
by Igor
05:01 queued 02:41
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) {
16
+        $this->responders = (function(ResponderInterface ...$responders) {
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) {
28
+            function(ResponderInterface $responder) use ($meta, $result) {
29 29
                 return $responder->supports($result, $meta);
30 30
             }
31 31
         );
Please login to merge, or discard this patch.