Completed
Push — master ( a70ca2...b8c2a5 )
by Daniel
14:22
created
Routing/Method.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         $this->setDefaults($data['defaults']);
42 42
 
43 43
         if (isset($data['compiled'])) {
44
-            $this->compiled =$data['compiled'];
44
+            $this->compiled = $data['compiled'];
45 45
         }
46 46
     }
47 47
 
Please login to merge, or discard this patch.
Routing/MethodRouter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
         $that = $this;
148 148
 
149 149
         $cache = $this->getConfigCacheFactory()->cache($this->options['cache_dir'].'/'.$class.'.php',
150
-            function (ConfigCacheInterface $cache) use ($that, $class) {
150
+            function(ConfigCacheInterface $cache) use ($that, $class) {
151 151
                 $dumper = $that->getMatcherDumperInstance();
152 152
 
153 153
                 $options = array(
Please login to merge, or discard this patch.
Routing/MethodLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     {
15 15
         $collection = new MethodCollection();
16 16
         $root = $this->getContainer()->getParameter('kernel.root_dir');
17
-        $resource = $root . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'rpc_routing.yml';
17
+        $resource = $root.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'rpc_routing.yml';
18 18
         $type = 'yaml';
19 19
         $importedRouters = $this->import($resource, $type);
20 20
         $collection->addCollection($importedRouters);
Please login to merge, or discard this patch.