Passed
Push — master ( 69dcf5...069c44 )
by Eric
02:20 queued 17s
created
src/Template.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
         // Perform replacements
125 125
         $contents = str_replace(
126 126
             array_map(
127
-                fn (int|string $find): string => \sprintf('%s%s%s', $this->leftDelimiter, $find, $this->rightDelimiter),
127
+                fn (int | string $find): string => \sprintf('%s%s%s', $this->leftDelimiter, $find, $this->rightDelimiter),
128 128
                 array_keys($this->tplVars)
129 129
             ),
130 130
             array_values($this->tplVars),
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,9 @@
 block discarded – undo
43 43
     /**
44 44
      * Constructor.
45 45
      */
46
-    public function __construct(private readonly ?CacheItemPoolInterface $cacheItemPool = null) {}
46
+    public function __construct(private readonly ?CacheItemPoolInterface $cacheItemPool = null)
47
+    {
48
+}
47 49
 
48 50
     public function clearCache(): bool
49 51
     {
Please login to merge, or discard this patch.