25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
288B

  1. <?php
  2. namespace App\Exceptions;
  3. use Framework\Support\ExceptionHandler;
  4. use Throwable;
  5. class Handler extends ExceptionHandler
  6. {
  7. public function showThrowable(Throwable $throwable)
  8. {
  9. // add in some reporting...
  10. return parent::showThrowable($throwable);
  11. }
  12. }

Powered by TurnKey Linux.