Skip to content

Commit 6f2706b

Browse files
author
Andrii Afanasiev
committed
Merge branch 'master' into develop
2 parents 92e714c + 40c1e20 commit 6f2706b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Provider/RollbarHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public function shouldSkip($exception)
180180
{
181181
// check exception
182182
foreach ($this->exclude as $instance) {
183-
if (class_exists($instance) && $exception instanceof $instance) {
183+
if ((class_exists($instance) || interface_exists($instance)) && $exception instanceof $instance) {
184184
return true;
185185
}
186186
}

0 commit comments

Comments
 (0)