safe
safe copied to clipboard
PHP 8.4 - Implicit nullability deprecation
PHP 8.4 recently merged changes to emit a deprecation notice on function declared with an implicit nullable type.
All upstream functions in php-src already have the nullable types (?string $var = null and not string $var = null), so we will need to update our generator to account for this.
I submitted PR #441 to preview the expected changes.