Handler.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. namespace App\Exceptions;
  3. use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
  4. use Throwable;
  5. class Handler extends ExceptionHandler
  6. {
  7. /**
  8. * A list of exception types with their corresponding custom log levels.
  9. *
  10. * @var array<class-string<\Throwable>, \Psr\Log\LogLevel::*>
  11. */
  12. protected $levels = [
  13. //
  14. ];
  15. /**
  16. * A list of the exception types that are not reported.
  17. *
  18. * @var array<int, class-string<\Throwable>>
  19. */
  20. protected $dontReport = [
  21. //
  22. ];
  23. /**
  24. * A list of the inputs that are never flashed for validation exceptions.
  25. *
  26. * @var array<int, string>
  27. */
  28. protected $dontFlash = [
  29. 'current_password',
  30. 'password',
  31. 'password_confirmation',
  32. ];
  33. /**
  34. * Register the exception handling callbacks for the application.
  35. *
  36. * @return void
  37. */
  38. public function register()
  39. {
  40. $this->reportable(function (Throwable $e) {
  41. //
  42. });
  43. }
  44. }