@@ -223,7 +223,7 @@  | 
                                                    ||
| 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),  | 
                                                        
@@ -46,7 +46,8 @@  | 
                                                    ||
| 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.  | 
                                                        
@@ -20,7 +20,9 @@  | 
                                                    ||
| 20 | 20 | |
| 21 | 21 | final readonly class DatabaseStorage implements StorageInterface  | 
                                                        
| 22 | 22 |  { | 
                                                        
| 23 | -    public function __construct(private PDO $pdo, private DatabaseStorageConfig $databaseStorageConfig) {} | 
                                                        |
| 23 | + public function __construct(private PDO $pdo, private DatabaseStorageConfig $databaseStorageConfig)  | 
                                                        |
| 24 | +    { | 
                                                        |
| 25 | +}  | 
                                                        |
| 24 | 26 | |
| 25 | 27 | /**  | 
                                                        
| 26 | 28 | * @inheritDoc  |