Passed
Pull Request — master (#8)
by Martin
11:54 queued 07:52
created
src/DependencyInjection/Compiler/TwigLoaderPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
             if (in_array('alpha_twig.loader.database', $existingChain)) {
44 44
                 return;
45 45
             }
46
-            $existingChain[] = $container->getDefinition('alpha_twig.loader.database');
46
+            $existingChain[ ] = $container->getDefinition('alpha_twig.loader.database');
47 47
             $chainLoaderDefinition->replaceArgument(0, $existingChain);
48 48
         } catch (OutOfBoundsException $exception) {
49 49
             $newChain = [
Please login to merge, or discard this patch.
src/Extension/YamlDumpExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     public function getFilters(): array
12 12
     {
13 13
         return [
14
-            new \Twig_SimpleFilter('yaml_dump', [$this, 'yamlDump']),
14
+            new \Twig_SimpleFilter('yaml_dump', [ $this, 'yamlDump' ]),
15 15
         ];
16 16
     }
17 17
 
Please login to merge, or discard this patch.
src/Extension/UrlDecodeExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     public function getFilters(): array
10 10
     {
11 11
         return [
12
-            new \Twig_SimpleFilter('url_decode', [$this, 'urlDecode']),
12
+            new \Twig_SimpleFilter('url_decode', [ $this, 'urlDecode' ]),
13 13
         ];
14 14
     }
15 15
 
Please login to merge, or discard this patch.