Update exceptions handler

This commit is contained in:
Daniel Supernault 2021-05-27 23:06:47 -06:00
parent 178ed63d0a
commit 7e0be15404
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -4,6 +4,7 @@ namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
use League\OAuth2\Server\Exception\OAuthServerException;
class Handler extends ExceptionHandler
{
@ -13,7 +14,7 @@ class Handler extends ExceptionHandler
* @var array
*/
protected $dontReport = [
//
OAuthServerException::class
];
/**