Passed
Push — master ( 2f61c1...c1f5d7 )
by Dan
04:59
created
Src/Router/Adaptor/RSymfonyAdaptor.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -14,8 +14,6 @@
 block discarded – undo
14 14
 use Ds\Router\Interfaces\RouteInterface;
15 15
 use Ds\Router\Interfaces\SerializerInterface;
16 16
 use Ds\Router\RouterResponse;
17
-
18
-
19 17
 use Symfony\Component\Routing\Matcher\UrlMatcher;
20 18
 use Symfony\Component\Routing\RequestContext;
21 19
 use Symfony\Component\Routing\RouteCollection;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     public function getSymfonyRouteCollection(RouteCollectionInterface $routes)
87 87
     {
88 88
 
89
-        if (!$this->options['cacheDisabled'] && file_exists($this->options['cacheFile'])){
89
+        if (!$this->options['cacheDisabled'] && file_exists($this->options['cacheFile'])) {
90 90
             //get cached route collection.
91 91
         }
92 92
 
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             array('month' => '[0-9]{4}-[0-9]{2}'), // requirements
100 100
             array(), // options
101 101
             '', // host
102
-            array('https','https'), // schemes
102
+            array('https', 'https'), // schemes
103 103
             array('GET') // methods
104 104
         );
105 105
 
Please login to merge, or discard this patch.
Src/Router/Adaptor/SymfonyAdaptor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Ds\Router\Interfaces\RouteInterface;
15 15
 use Ds\Router\Interfaces\SerializerInterface;
16 16
 use Ds\Router\RouterResponse;
17
-
18 17
 use Symfony\Component\Routing\Matcher\UrlMatcher;
19 18
 use Symfony\Component\Routing\RequestContext;
20 19
 use Symfony\Component\Routing\Route;
Please login to merge, or discard this patch.