選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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