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
PHP 7.4 introduces two new magic methods, __serialize and __unserialize. Introducing support for this has broken PHPCS on the relevant repos because the Joomla.NamingConventions.ValidFunctionName.MethodDoubleUnderscore sniff does not know about these new methods.
The text was updated successfully, but these errors were encountered:
You'll have to for the Joomla Coding Standards 2.x ruleset at a minimum unless you basically say that will never be PHP 7.4 friendly (AFAIK PHP_CodeSniffer isn't supporting 2.x anymore). For 3.x, the minimum PHP_CodeSniffer version can be bumped to something that supports it when available.
PHP 7.4 introduces two new magic methods,
__serialize
and__unserialize
. Introducing support for this has broken PHPCS on the relevant repos because theJoomla.NamingConventions.ValidFunctionName.MethodDoubleUnderscore
sniff does not know about these new methods.The text was updated successfully, but these errors were encountered: