@@ -3,8 +3,6 @@ |
||
3 | 3 | |
4 | 4 | use Psr\Http\Message\ResponseInterface; |
5 | 5 | use Psr\Http\Message\ServerRequestInterface; |
6 | -use Mcustiel\PowerRoute\Common\Factories\MatcherFactory; |
|
7 | -use Mcustiel\PowerRoute\Common\Factories\InputSourceFactory; |
|
8 | 6 | use Mcustiel\PowerRoute\Common\Factories\ActionFactory; |
9 | 7 | use Mcustiel\PowerRoute\Common\TransactionData; |
10 | 8 | use JMS\Serializer\Exception\RuntimeException; |
@@ -16,7 +16,7 @@ |
||
16 | 16 | foreach ($conditions as $condition) { |
17 | 17 | $inputSource = $this->getInputSource($condition); |
18 | 18 | $matcher = $this->getMatcher($condition); |
19 | - if (! $matcher->match($inputSource->getValue($request))) { |
|
19 | + if (!$matcher->match($inputSource->getValue($request))) { |
|
20 | 20 | return false; |
21 | 21 | } |
22 | 22 | } |