@@ -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), |
@@ -43,7 +43,9 @@ |
||
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. |