Skip to content

Commit 7f16b7c

Browse files
Use the parent (illuminate) handler to determine whether we should report the throwable (#66)
1 parent e249e01 commit 7f16b7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Exception/Handler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public function report(Throwable $throwable)
9191
*/
9292
public function shouldReport(Throwable $e)
9393
{
94-
return true;
94+
return $this->parentHandler->shouldReport($e);
9595
}
9696

9797
/**

0 commit comments

Comments
 (0)