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
Internal functions up to PHP 8.0 implicitly accepted null as a string. It seems that the type is declared as ?string instead of string for compatibility in polyfills up to php80.
These errors below looks strange:
Internal functions up to PHP 8.0 implicitly accepted
null
as astring
. It seems that the type is declared as?string
instead ofstring
for compatibility in polyfills up to php80.polyfill/src/Util/TestListenerTrait.php
Lines 126 to 136 in df4793d
In the code below,
?
is removed to check the difference between the internal function and the polyfill interface.PHP 8.4 deprecates implicit nullable, so this test should be replaced with more stringent checks.
refs #471 (comment)
The text was updated successfully, but these errors were encountered: