Skip to content

Commit

Permalink
Use imported classes (#20915)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnabialek authored and taylorotwell committed Sep 1, 2017
1 parent a74f922 commit d79f138
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Illuminate/Foundation/Exceptions/Handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ class Handler implements ExceptionHandlerContract
* @var array
*/
protected $internalDontReport = [
\Illuminate\Auth\AuthenticationException::class,
\Illuminate\Auth\Access\AuthorizationException::class,
\Symfony\Component\HttpKernel\Exception\HttpException::class,
AuthenticationException::class,
AuthorizationException::class,
HttpException::class,
HttpResponseException::class,
\Illuminate\Database\Eloquent\ModelNotFoundException::class,
\Illuminate\Session\TokenMismatchException::class,
\Illuminate\Validation\ValidationException::class,
ModelNotFoundException::class,
TokenMismatchException::class,
ValidationException::class,
];

/**
Expand Down

0 comments on commit d79f138

Please sign in to comment.