@@ -13,7 +13,7 @@ discard block |
||
| 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 |
||
| 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 | ); |