Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix deprecation warnings with attribute #[\ReturnTypeWillChange] #313

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

jvc9109
Copy link

@jvc9109 jvc9109 commented May 30, 2023

Fixes deprecation warnings in PHP 8.1:

PHP Deprecated:  Return type of Infusionsoft\Api\Rest\RestModel::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 infusionsoft-php/src/Infusionsoft/Api/Rest/RestModel.php on line 985
PHP Deprecated:  Return type of Infusionsoft\Api\Rest\RestModel::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in infusionsoft-php/src/Infusionsoft/Api/Rest/RestModel.php on line 997
PHP Deprecated:  Return type of Infusionsoft\Api\Rest\RestModel::offsetSet($offset, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in infusionsoft-php/src/Infusionsoft/Api/Rest/RestModel.php on line 1010
PHP Deprecated:  Return type of Infusionsoft\Api\Rest\RestModel::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in infusionsoft-php/src/Infusionsoft/Api/Rest/RestModel.php on line 1022
PHP Deprecated:  Return type of Infusionsoft\Api\Rest\RestModel::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in infusionsoft-php/src/Infusionsoft/Api/Rest/RestModel.php on line 574
PHP Deprecated:  Return type of Infusionsoft\InfusionsoftCollection::offsetExists($key) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in infusionsoft-php/src/Infusionsoft/InfusionsoftCollection.php on line 147
PHP Deprecated:  Return type of Infusionsoft\InfusionsoftCollection::offsetGet($key) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in infusionsoft-php/src/Infusionsoft/InfusionsoftCollection.php on line 158
PHP Deprecated:  Return type of Infusionsoft\InfusionsoftCollection::offsetSet($key, $value) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in infusionsoft-php/src/Infusionsoft/InfusionsoftCollection.php on line 170
PHP Deprecated:  Return type of Infusionsoft\InfusionsoftCollection::offsetUnset($key) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in infusionsoft-php/src/Infusionsoft/InfusionsoftCollection.php on line 185
PHP Deprecated:  Return type of Infusionsoft\InfusionsoftCollection::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in infusionsoft-php/src/Infusionsoft/InfusionsoftCollection.php on line 136
PHP Deprecated:  Return type of Infusionsoft\InfusionsoftCollection::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in infusionsoft-php/src/Infusionsoft/InfusionsoftCollection.php on line 115

@jvc9109 jvc9109 changed the title fix deprecation warnings with attribute #[\ReturnTypeWillChange] Fix deprecation warnings with attribute #[\ReturnTypeWillChange] May 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant