Completed
Push — develop ( 87f5bf...c17c7b )
by Jens
03:04
created
src/DependencyInjection/HandlebarsExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,12 +29,12 @@  discard block
 block discarded – undo
29 29
         $flags = 0;
30 30
         if (isset($config['flags'])) {
31 31
             foreach ($config['flags'] as $flag) {
32
-                $flags = $flags | constant('LightnCandy\LightnCandy::' . $flag);
32
+                $flags = $flags | constant('LightnCandy\LightnCandy::'.$flag);
33 33
             }
34 34
         }
35 35
         if (isset($config['excludeFlags'])) {
36 36
             foreach ($config['excludeFlags'] as $flag) {
37
-                $flags = $flags & ~constant('LightnCandy\LightnCandy::' . $flag);
37
+                $flags = $flags & ~constant('LightnCandy\LightnCandy::'.$flag);
38 38
             }
39 39
             unset($config['excludeFlags']);
40 40
         }
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         $container->setParameter('handlebars.assetic', $config['assetic']);
60 60
 
61 61
         foreach ($config['translation'] as $key => $value) {
62
-            $container->setParameter('handlebars.translation.' . $key, $value);
62
+            $container->setParameter('handlebars.translation.'.$key, $value);
63 63
         }
64 64
 
65 65
         // register user-configured paths
Please login to merge, or discard this patch.