Passed
Push — master ( cc3241...e24646 )
by Eric
01:01 queued 13s
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   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,8 @@
 block discarded – undo
46 46
     public function __construct(
47 47
         private readonly StorageInterface $storage,
48 48
         private readonly ?CacheItemPoolInterface $cacheItemPool = null
49
-    ) {}
49
+    ) {
50
+}
50 51
 
51 52
     /**
52 53
      * Clears the cache.
Please login to merge, or discard this patch.
src/Storage/DatabaseStorage.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,9 @@
 block discarded – undo
20 20
 
21 21
 readonly class DatabaseStorage implements StorageInterface
22 22
 {
23
-    public function __construct(private PDO $pdo) {}
23
+    public function __construct(private PDO $pdo)
24
+    {
25
+}
24 26
 
25 27
     /**
26 28
      * @inheritDoc
Please login to merge, or discard this patch.