ExceptionHandler.php 275 B

1234567891011121314
  1. <?php
  2. namespace Facade\Ignition\Tests\Exceptions;
  3. use Illuminate\Foundation\Exceptions\Handler;
  4. use Whoops\Handler\HandlerInterface;
  5. class ExceptionHandler extends Handler
  6. {
  7. protected function whoopsHandler()
  8. {
  9. return app(HandlerInterface::class);
  10. }
  11. }