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 528ef7b commit 7031ea5Copy full SHA for 7031ea5
changelog.md
@@ -1,5 +1,7 @@
1
### master
2
3
+- Fix `You must call introspect() before getContainerCachePath()`
4
+
5
### [3.0.0](../../compare/2.0.0...3.0.0) - 2022-11-22
6
7
- [BC Break] Rename namespace `steevanb\ContainerIntrospection` to `Steevanb\ContainerIntrospection`
src/ContainerIntrospectionService.php
@@ -352,7 +352,7 @@ protected function introspectCache(): self
352
353
$this->cachePath = dirname($fileName);
354
355
- $cacheFiles = glob($this->getContainerCachePath() . '/*');
+ $cacheFiles = glob($this->cachePath . '/*');
356
if (is_array($cacheFiles) === false) {
357
throw new ContainerIntrospectionException('Container cache files not found.');
358
}
0 commit comments