Skip to content

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

2 participants