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 70bdda6 commit 4bce571Copy full SHA for 4bce571
src/QueryReflection/ReflectionCache.php
@@ -49,7 +49,7 @@ private function __construct(string $cacheFile)
49
$lockFile = sys_get_temp_dir().'/staabm-phpstan-dba-cache.lock';
50
$lockHandle = fopen($lockFile, 'w+');
51
if (false === $lockHandle) {
52
- throw new DbaException(sprintf('Could not open lock file "%s".', $this->cacheFile));
+ throw new DbaException(sprintf('Could not open lock file "%s".', $lockFile));
53
}
54
55
self::$lockHandle = $lockHandle;
0 commit comments