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 3ca06c8 commit f945036Copy full SHA for f945036
src/Stackify/Log/Entities/ErrorWrapper.php
@@ -123,7 +123,7 @@ private function filterTrace(array $trace)
123
}
124
foreach ($trace as $item) {
125
// check if path starts with $excludePath
126
- if (false === strpos($item['file'], $excludePath)) {
+ if (isset($item['file']) && false === strpos($item['file'], $excludePath)) {
127
$filtered[] = $item;
128
129
@@ -141,4 +141,4 @@ private function getFullPathThatContains($searchPath)
141
return $result;
142
143
144
-}
+}
0 commit comments