Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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