@@ -27,10 +27,10 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | |