add stub handler

This commit is contained in:
Taylor Otwell
2020-11-14 09:17:41 -06:00
parent 3adc2196f7
commit 4931af1400

View File

@@ -3,6 +3,7 @@
namespace App\Exceptions; namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
class Handler extends ExceptionHandler class Handler extends ExceptionHandler
{ {
@@ -32,6 +33,8 @@ class Handler extends ExceptionHandler
*/ */
public function register() public function register()
{ {
$this->reportable(function (Throwable $e) {
// //
});
} }
} }