Completed
Pull Request — master (#265)
by Chris
05:34
created
DependencyInjection/DoctrineMigrationsExtension.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
27 27
         $config = $this->processConfiguration($configuration, $configs);
28 28
 
29 29
         foreach ($config as $key => $value) {
30
-            $container->setParameter($this->getAlias() . '.' . $key, $value);
30
+            $container->setParameter($this->getAlias().'.'.$key, $value);
31 31
         }
32 32
 
33
-        $locator = new FileLocator(__DIR__ . '/../Resources/config/');
33
+        $locator = new FileLocator(__DIR__.'/../Resources/config/');
34 34
         $loader  = new XmlFileLoader($container, $locator);
35 35
 
36 36
         $loader->load('services.xml');
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function getXsdValidationBasePath() : string
47 47
     {
48
-        return __DIR__ . '/../Resources/config/schema';
48
+        return __DIR__.'/../Resources/config/schema';
49 49
     }
50 50
 
51 51
     public function getNamespace() : string
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      */
59 59
     private function configureSchemaProvider(array $config, ContainerBuilder $container) : void
60 60
     {
61
-        if (! $config['schema_provider']) {
61
+        if (!$config['schema_provider']) {
62 62
             return;
63 63
         }
64 64
 
Please login to merge, or discard this patch.