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.
2 parents 92e714c + 40c1e20 commit 6f2706bCopy full SHA for 6f2706b
Provider/RollbarHandler.php
@@ -180,7 +180,7 @@ public function shouldSkip($exception)
180
{
181
// check exception
182
foreach ($this->exclude as $instance) {
183
- if (class_exists($instance) && $exception instanceof $instance) {
+ if ((class_exists($instance) || interface_exists($instance)) && $exception instanceof $instance) {
184
return true;
185
}
186
0 commit comments