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

Add #[\ReturnTypeWillChange] attribute for PHP 8.x compatibility. #339

Merged
merged 2 commits into from Nov 22, 2021

Conversation

chrisdeeming
Copy link
Contributor

Starting with PHP 8.1 the JsonSerializable interface has a return type of mixed for its jsonSerialize method which is implemented in Minishlink\WebPush\MessageSentReport.

Adding a return type of mixed will break the library in all versions before PHP 8.1. Not making any changes will break the library in PHP 8.1.

However, adding the attribute #[\ReturnTypeWillChange] allows us to make no further changes but ensure the library will still work in all existing versions AND PHP 8.1.

The attribute is entirely ignored in non-supporting PHP versions.

So, as per the contributing guidelines this has not been tested but you can see for yourself it does not in the slightest change the functionality so should be good to merge.

Note: There needs to be similar changes in the JWT libraries but I'll be doing some PRs for those too shortly.

Cheers!

Copy link
Member

@Minishlink Minishlink left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@Minishlink Minishlink merged commit 5c91952 into web-push-libs:master Nov 22, 2021
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.

None yet

2 participants