-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deprecation notice with PHP 8.4 #225
Comments
Update - there are several other instances of "implicit null parameters". There is also another PHP8.4 compatibility issue. Line 78 of Modules/Tld/Parsers/CommonParser.php sets dynamic properties. |
olaulau
added a commit
to olaulau/IspAdmin
that referenced
this issue
Jan 10, 2025
PHP 8.4 : WHOIS library sends deprec warnings (io-developer/php-whois#225)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PHP-Whois version: 4.1.10
PHP version: 8.4.0
Description
Class
Whois
uses traitWhoisDeprecated
, which has the comment "will be removed in 4.2"This code, which is unused, is not compatible wtih PHP 8.4, due to the function signature.
public static function create(ILoader $loader = null)
needs to be changed to
public static function create(?ILoader $loader = null)
It gives the error:
How to reproduce
Possible Solution
Either
The text was updated successfully, but these errors were encountered: