Completed
Push — develop ( c17c7b...45216f )
by Jens
03:41
created
src/DependencyInjection/HandlebarsExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.