Handler.php 670 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace App\Exceptions;
  3. use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
  4. class Handler extends ExceptionHandler
  5. {
  6. /**
  7. * A list of the exception types that are not reported.
  8. *
  9. * @var array
  10. */
  11. protected $dontReport = [
  12. //
  13. ];
  14. /**
  15. * A list of the inputs that are never flashed for validation exceptions.
  16. *
  17. * @var array
  18. */
  19. protected $dontFlash = [
  20. 'password',
  21. 'password_confirmation',
  22. ];
  23. /**
  24. * Register the exception handling callbacks for the application.
  25. *
  26. * @return void
  27. */
  28. public function register()
  29. {
  30. //
  31. }
  32. }