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
I noticed that some functions/methods use parameters with default null values without explicitly marking them as nullable. This pattern is deprecated as of PHP 8.4.
Example:
// Triggers deprecation in PHP 8.4functionexample(string$param = null) { ... }
// Should be:functionexample(?string$param = null) { ... }
It would be great to update these to avoid deprecation warnings in PHP 8.4 and beyond.
I’d be happy to help prepare a PR if that would be useful.