You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading PHP to 8.1, i have encountered a Deprecated error: Deprecated: Return type of MailSlurp\Models\InboxDto::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in
This is due to offsetExists param $offset being an integer, while it should be mixed. This error that is in every \Models file and in several methods.
When would the upgrade of this package to php8.1 appear or at least could this mistake be fixed?
The text was updated successfully, but these errors were encountered:
After upgrading PHP to 8.1, i have encountered a Deprecated error:
Deprecated: Return type of MailSlurp\Models\InboxDto::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in
This is due to offsetExists param $offset being an integer, while it should be mixed. This error that is in every \Models file and in several methods.
When would the upgrade of this package to php8.1 appear or at least could this mistake be fixed?
The text was updated successfully, but these errors were encountered: