Completed
Branch master (a2a183)
by Ole
03:11
created
src/Twig/Base64ImageExtension.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     public function getFilters(): array
30 30
     {
31 31
         return [
32
-          new TwigFilter('image64', [$this, 'createBase64Image']),
32
+            new TwigFilter('image64', [$this, 'createBase64Image']),
33 33
         ];
34 34
     }
35 35
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,13 +23,13 @@
 block discarded – undo
23 23
      */
24 24
     public function __construct(FileConverterInterface $fileConverter)
25 25
     {
26
-        $this->fileConverter = $fileConverter;
26
+        $this->fileConverter=$fileConverter;
27 27
     }
28 28
 
29 29
     public function getFilters(): array
30 30
     {
31 31
         return [
32
-          new TwigFilter('image64', [$this, 'createBase64Image']),
32
+          new TwigFilter('image64', [ $this, 'createBase64Image' ]),
33 33
         ];
34 34
     }
35 35
 
Please login to merge, or discard this patch.
src/Converter/ImageToBase64Converter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function __construct(NormalizerInterface $normalizer)
23 23
     {
24
-        $this->normalizer = $normalizer;
24
+        $this->normalizer=$normalizer;
25 25
     }
26 26
 
27 27
     /**
Please login to merge, or discard this patch.