Passed
Branch develop (905d13)
by Mariano
09:27
created
src/PowerRoute.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Common/Conditions/AllConditionsMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.