@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | */ |
| 75 | 75 | protected function getFileName(string $key): string |
| 76 | 76 | { |
| 77 | - return $this->cacheDir . \DIRECTORY_SEPARATOR . self::CACHE_FILE_PREFIX . $key . '.php'; |
|
| 77 | + return $this->cacheDir.\DIRECTORY_SEPARATOR.self::CACHE_FILE_PREFIX.$key.'.php'; |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | /** |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | ]; |
| 89 | 89 | $content = \Symfony\Component\VarExporter\VarExporter::export($item); |
| 90 | 90 | |
| 91 | - $content = '<?php return ' . $content . ';'; |
|
| 91 | + $content = '<?php return '.$content.';'; |
|
| 92 | 92 | |
| 93 | 93 | $cacheFile = $this->getFileName($key); |
| 94 | 94 | |