Skip to content

Commit 1bbf914

Browse files
committed
Fix static analysis
1 parent 1fac82f commit 1bbf914

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Recorders/Exceptions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ protected function resolveLocationFromViewException(Throwable $e): string
103103
// Getting the line number in the view file is a bit tricky.
104104
preg_match('/\(View: (?P<path>.*?)\)/', $e->getMessage(), $matches);
105105

106-
return $this->formatLocation($matches['path'], null);
106+
return $this->formatLocation($matches['path'], null); // @phpstan-ignore offsetAccess.notFound
107107
}
108108

109109
/**

0 commit comments

Comments
 (0)