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 wanted to address the recent deprecation notice concerning implicitly nullable parameter declarations in PHP 8.4. To comply with the new standards, the codebase need to update to use explicit nullable types. For instance, where it previously declared function test(string $test = null) {}, it should now declare function test(?string $test = null) {}.
If you wish, I can contribute to your project by making the necessary adjustments.