blessing-skin-server/tests/Concerns/FakeExceptionHandler.php
2018-08-12 21:06:47 +08:00

22 lines
355 B
PHP

<?php
/**
* @see TestCase::disableExceptionHandling
*/
class FakeExceptionHandler extends App\Exceptions\Handler
{
public function __construct() {
//
}
public function report(Exception $e) {
//
}
public function render($request, Exception $e)
{
// Just re-throw the exception
throw $e;
}
}