Filter additional exceptions

This commit is contained in:
David Bomba 2021-02-11 14:06:03 +11:00
parent 22fdb082b0
commit 1e5b112254

View File

@ -111,6 +111,10 @@ class Handler extends ExceptionHandler
return false;
}
if (strpos($exception->getMessage(), 'expects parameter 1 to be resource') !== false) {
return false;
}
return true;
}