Completed
Push — master ( 62cfcc...2524ae )
by Joel
06:31
created
DependencyInjection/RedirectionIOExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function load(array $configs, ContainerBuilder $container)
17 17
     {
18
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
18
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
19 19
         $loader->load('services.xml');
20 20
 
21 21
         $configuration = new Configuration();
Please login to merge, or discard this patch.
DependencyInjection/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
                     ->prototype('scalar')->end()
40 40
                     ->validate()
41 41
                         ->always()
42
-                        ->then(function ($v) use ($excludedPrefixes) { return array_unique(array_merge($excludedPrefixes, $v)); })
42
+                        ->then(function($v) use ($excludedPrefixes) { return array_unique(array_merge($excludedPrefixes, $v)); })
43 43
                     ->end()
44 44
                     ->defaultValue($excludedPrefixes)
45 45
                 ->end()
Please login to merge, or discard this patch.
EventListener/RequestResponseListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
         }
90 90
 
91 91
         if ('' !== $requestUri && '/' !== $requestUri[0]) {
92
-            $requestUri = '/'.$requestUri;
92
+            $requestUri = '/' . $requestUri;
93 93
         }
94 94
 
95 95
         if (null === ($baseUrl = $symfonyRequest->getBaseUrl())) {
Please login to merge, or discard this patch.