Closed ibrunotome closed 4 years ago
Laravel 7 now receives a Throwable instead of Exception in public function report(Throwable $exception)
public function report(Throwable $exception)
the public static function report(Exception $exception): void expects the Exception type.
public static function report(Exception $exception): void
What we can do? bump a new major version for laravel 7 compatibility or remove the type of variable?
I’ll have a look this afternoon. Thanks for reporting!
I decided to drop the type so we can keep backwards compatibility.
Released v0.2.1
v0.2.1
Laravel 7 now receives a Throwable instead of Exception in
public function report(Throwable $exception)
the
public static function report(Exception $exception): void
expects the Exception type.What we can do? bump a new major version for laravel 7 compatibility or remove the type of variable?