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
In PHP 8.4, the use of implicitly nullable parameters has been deprecated. When our APIv2 is run on PHP 8.4, it throws warnings due to this change. The deprecated behavior and its implications are documented on the official PHP site: PHP 8.4 Deprecations - Implicitly Nullable Parameter.
To solve we can perform a static code analysis across the project to locate all implicitly nullable parameters and refactor them for PHP 8.4 compliance.
The text was updated successfully, but these errors were encountered:
Version Information
0.14.3
Hashcat
No response
Description
In PHP 8.4, the use of implicitly nullable parameters has been deprecated. When our APIv2 is run on PHP 8.4, it throws warnings due to this change. The deprecated behavior and its implications are documented on the official PHP site: PHP 8.4 Deprecations - Implicitly Nullable Parameter.
To solve we can perform a static code analysis across the project to locate all implicitly nullable parameters and refactor them for PHP 8.4 compliance.
The text was updated successfully, but these errors were encountered: