Merge pull request #10713 from snipe/fixes/error_handler

Added use statement
This commit is contained in:
snipe 2022-02-22 10:46:58 -08:00 committed by GitHub
commit 6ef053bc52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@ namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use App\Helpers\Helper;
use Illuminate\Validation\ValidationException;
use Illuminate\Auth\AuthenticationException;
use Log;
use Throwable;
use JsonException;
@ -142,4 +143,4 @@ class Handler extends ExceptionHandler
//
});
}
}
}