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 d4d8c09 commit 8b174ddCopy full SHA for 8b174dd
src/Domain/Runner.php
@@ -187,7 +187,7 @@ private function processFile(SplFileInfo $file): void
187
{
188
$cacheKey = 'insights.' . $this->cacheKey . '.' . md5($file->getContents());
189
// Do not use cache if fix is enabled to force processors to handle it
190
- if (! $this->cache->has($cacheKey)) {
+ if ($this->configuration->hasFixEnabled() && ! $this->cache->has($cacheKey)) {
191
throw new \LogicException('Unable to find data for ' . $file->getPathname());
192
}
193
0 commit comments