@@ -30,7 +30,7 @@ |
||
| 30 | 30 | */ |
| 31 | 31 | public function getRoles() |
| 32 | 32 | { |
| 33 | - return [ 'ROLE_USER' ]; |
|
| 33 | + return ['ROLE_USER']; |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | */ |
| 20 | 20 | public function load(array $configs, ContainerBuilder $container) |
| 21 | 21 | { |
| 22 | - $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 22 | + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 23 | 23 | $loader->load('services.yml'); |
| 24 | 24 | } |
| 25 | 25 | } |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | )) |
| 21 | 21 | ->useAttributeAsKey('class') |
| 22 | 22 | ->prototype('array') |
| 23 | - ->beforeNormalization()->ifString()->then(function ($v) { return array('route' => $v); })->end() |
|
| 23 | + ->beforeNormalization()->ifString()->then(function($v) { return array('route' => $v); })->end() |
|
| 24 | 24 | ->children() |
| 25 | 25 | ->scalarNode('route')->cannotBeEmpty()->end() |
| 26 | 26 | ->end() |