@@ -124,7 +124,7 @@ |
||
124 | 124 | // Perform replacements |
125 | 125 | $contents = str_replace( |
126 | 126 | array_map( |
127 | - fn (int|string $find): string => \sprintf('%s%s%s', $this->leftDelimiter, $find, $this->rightDelimiter), |
|
127 | + fn (int | string $find): string => \sprintf('%s%s%s', $this->leftDelimiter, $find, $this->rightDelimiter), |
|
128 | 128 | array_keys($this->tplVars) |
129 | 129 | ), |
130 | 130 | 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 | public function clearCache(): bool |
49 | 51 | { |