Passed
Push — master ( cc3241...e24646 )
by Eric
01:01 queued 13s
created
src/Template.php 1 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.