janhenkes / teamleader-php-sdk

Teamleader API v2 PHP SDK
MIT License
16 stars 25 forks source link

Fix jsonSerialize deprecation notice #63

Closed josbeir closed 6 months ago

josbeir commented 6 months ago

Model::jsonSerialize() is not compatible with JsonSerializable resulting in a deprecation warning on php 8.x

Adding a JsonSerializable(): mixed fixes the warning.

janhenkes commented 6 months ago

I think this is not backward compatible, so we should increase the PHP version in composer.json to ^8.0 Can you please add this?

josbeir commented 6 months ago

done!