From efb114cb21ebe8c944ba99a4802d4215a7177457 Mon Sep 17 00:00:00 2001 From: Helmut Hummel Date: Mon, 7 Jun 2021 15:29:57 +0200 Subject: [PATCH] Move cache file into core caches folder Fixes: #23 --- src/ConfigLoader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ConfigLoader.php b/src/ConfigLoader.php index b496546..f9f5acf 100644 --- a/src/ConfigLoader.php +++ b/src/ConfigLoader.php @@ -111,7 +111,7 @@ public function flushCache(): void private function getCacheFile(): string { - return getenv('TYPO3_PATH_APP') . '/var/cache/code' . sprintf(CachedConfigurationLoader::CACHE_FILE_PATTERN, $this->getCacheIdentifier()); + return getenv('TYPO3_PATH_APP') . '/var/cache/code/core' . sprintf(CachedConfigurationLoader::CACHE_FILE_PATTERN, $this->getCacheIdentifier()); } private function buildLoader(): ConfigurationLoader