Passed
Push — master ( dd2095...cc3241 )
by Eric
02:09
created
src/Template.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
     {
224 224
         return str_replace(
225 225
             array_map(
226
-                fn (int|string $find): string => \sprintf('%s%s%s', $this->leftDelimiter, $find, $this->rightDelimiter),
226
+                fn (int | string $find): string => \sprintf('%s%s%s', $this->leftDelimiter, $find, $this->rightDelimiter),
227 227
                 array_keys($this->tplVars)
228 228
             ),
229 229
             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
     /**
49 51
      * Clears the cache.
Please login to merge, or discard this patch.