We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26c8819 commit e11572aCopy full SHA for e11572a
packages/Caching/Detector/ChangedFilesDetector.php
@@ -112,7 +112,7 @@ private function hashFile(string $filePath): string
112
113
private function storeConfigurationDataHash(string $filePath, string $configurationHash): void
114
{
115
- $key = CacheKey::CONFIGURATION_HASH_KEY . '_' . $this->hashFile($filePath);
+ $key = CacheKey::CONFIGURATION_HASH_KEY . '_' . $this->getFilePathCacheKey($filePath);
116
$this->invalidateCacheIfConfigurationChanged($key, $configurationHash);
117
118
$this->cache->save($key, CacheKey::CONFIGURATION_HASH_KEY, $configurationHash);
0 commit comments