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 38abdd4 commit 52193fbCopy full SHA for 52193fb
Provider/RollbarHandler.php
@@ -137,7 +137,7 @@ public function shouldSkip(\Exception $exception)
137
{
138
// check exception
139
foreach ($this->exclude as $instance) {
140
- if (class_exists($instance) && $exception instanceof $instance) {
+ if ((class_exists($instance) || interface_exists($instance)) && $exception instanceof $instance) {
141
return true;
142
}
143
0 commit comments