@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | |
31 | 31 | foreach ($config['translation'] as $key => $value) { |
32 | - $container->setParameter('handlebars.translation.' . $key, $value); |
|
32 | + $container->setParameter('handlebars.translation.'.$key, $value); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | $this->setupAssetic($loader, $config, $container); |
@@ -45,12 +45,12 @@ discard block |
||
45 | 45 | $flags = 0; |
46 | 46 | if (isset($config['flags'])) { |
47 | 47 | foreach ($config['flags'] as $flag) { |
48 | - $flags = $flags | constant('LightnCandy\LightnCandy::' . $flag); |
|
48 | + $flags = $flags | constant('LightnCandy\LightnCandy::'.$flag); |
|
49 | 49 | } |
50 | 50 | } |
51 | 51 | if (isset($config['excludeFlags'])) { |
52 | 52 | foreach ($config['excludeFlags'] as $flag) { |
53 | - $flags = $flags & ~constant('LightnCandy\LightnCandy::' . $flag); |
|
53 | + $flags = $flags & ~constant('LightnCandy\LightnCandy::'.$flag); |
|
54 | 54 | } |
55 | 55 | unset($config['excludeFlags']); |
56 | 56 | } |