@@ -20,7 +20,7 @@ |
||
| 20 | 20 | $configuration = new Configuration(); |
| 21 | 21 | $this->processConfiguration($configuration, $configs); |
| 22 | 22 | |
| 23 | - $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 23 | + $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 24 | 24 | $loader->load('services.xml'); |
| 25 | 25 | } |
| 26 | 26 | } |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | */ |
| 28 | 28 | public function getCacheDir() |
| 29 | 29 | { |
| 30 | - return sys_get_temp_dir().'/LexikDataLayerBundle/'; |
|
| 30 | + return sys_get_temp_dir() . '/LexikDataLayerBundle/'; |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public function getLogDir() |
| 37 | 37 | { |
| 38 | - return sys_get_temp_dir().'/LexikDataLayerBundle/'; |
|
| 38 | + return sys_get_temp_dir() . '/LexikDataLayerBundle/'; |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | /** |
@@ -43,6 +43,6 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | public function registerContainerConfiguration(LoaderInterface $loader) |
| 45 | 45 | { |
| 46 | - $loader->load(__DIR__.'/config/config.yml'); |
|
| 46 | + $loader->load(__DIR__ . '/config/config.yml'); |
|
| 47 | 47 | } |
| 48 | 48 | } |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | protected function setUp() |
| 25 | 25 | { |
| 26 | 26 | $fs = new Filesystem(); |
| 27 | - $fs->remove(sys_get_temp_dir().'/DataLayerBundle/'); |
|
| 27 | + $fs->remove(sys_get_temp_dir() . '/DataLayerBundle/'); |
|
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | /** |