-
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PHP 8.4 | RemovedFunctions: detect use of lcg_value (RFC)
> . lcg_value() is deprecated, as the function is broken in multiple ways. > Use \Random\Randomizer::getFloat() instead. > RFC: https://wiki.php.net/rfc/deprecations_php_8_4 This commit accounts for the deprecation. Refs: * https://wiki.php.net/rfc/deprecations_php_8_4#deprecate_lcg_value * https://github.com/php/php-src/blob/634708a14f9546cc81bc5f9bf269ec0c46743a0f/UPGRADING#L480-L482 * php/php-src 15211 * php/php-src@f5f9294 Related to 1731
- Loading branch information
Showing
3 changed files
with
7 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1392,3 +1392,4 @@ xml_set_object(); | |
mysqli_ping(); | ||
mysqli_refresh(); | ||
mysqli_kill(); | ||
lcg_value(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters