You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
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.