Completed
Push — master ( 7fb117...62cfcc )
by Joel
08:53
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.