@@ -40,7 +40,7 @@ |
||
| 40 | 40 | ->scalarNode('features') |
| 41 | 41 | ->beforeNormalization() |
| 42 | 42 | ->ifArray() |
| 43 | - ->then(function ($v) use ($features) { |
|
| 43 | + ->then(function($v) use ($features) { |
|
| 44 | 44 | $featureMask = 0; |
| 45 | 45 | foreach ($v as $featureName) { |
| 46 | 46 | $featureName = strtoupper($featureName); |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | $enumerator = new Enumerator($options['appDir'], $options['includePaths'], $options['excludePaths']); |
| 80 | 80 | $iterator = $enumerator->enumerate(); |
| 81 | 81 | |
| 82 | - set_error_handler(function ($errno, $errstr, $errfile, $errline) { |
|
| 82 | + set_error_handler(function($errno, $errstr, $errfile, $errline) { |
|
| 83 | 83 | throw new \ErrorException($errstr, $errno, 0, $errfile, $errline); |
| 84 | 84 | }); |
| 85 | 85 | |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | file_get_contents( |
| 91 | 91 | FilterInjectorTransformer::PHP_FILTER_READ. |
| 92 | 92 | SourceTransformingLoader::FILTER_IDENTIFIER. |
| 93 | - "/resource=" . $realPath |
|
| 93 | + "/resource=".$realPath |
|
| 94 | 94 | ); |
| 95 | 95 | } catch (\Exception $e) { |
| 96 | 96 | /* noop */ |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | */ |
| 33 | 33 | public function getXsdValidationBasePath() |
| 34 | 34 | { |
| 35 | - return __DIR__ . '/../Resources/config/schema'; |
|
| 35 | + return __DIR__.'/../Resources/config/schema'; |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | /** |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public function load(array $config, ContainerBuilder $container) |
| 49 | 49 | { |
| 50 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 50 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 51 | 51 | $loader->load('services.xml'); |
| 52 | 52 | $loader->load('commands.xml'); |
| 53 | 53 | |