Skip to content

Commit 240b596

Browse files
authored
Fix date_parse() on PHP < 8.4 (#688)
1 parent 65a26a7 commit 240b596

File tree

7 files changed

+1
-6
lines changed

7 files changed

+1
-6
lines changed

generated/8.1/functionsList.php

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generated/8.1/rector-migrate.php

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generated/8.2/functionsList.php

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generated/8.2/rector-migrate.php

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generated/8.3/functionsList.php

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generated/8.3/rector-migrate.php

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generator/config/hiddenFunctions.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
'array_walk_recursive', // actually returns always true, see https://github.com/php/doc-en/commit/cec5275f23d2db648df30a5702b378044431be97
1818
'curl_share_errno', // this function does not anymore return false since PHP 8.0
1919
'date', // this function throws an error instead of returning false PHP 8.0, but the doc has only been updated since PHP 8.4
20+
'date_parse', // always return an array, see https://github.com/php/doc-en/pull/2395
2021
'getallheaders', // always return an array since PHP 7, see https://github.com/php/doc-en/commit/68e52ef14de33f6752a8fdda1ae83c861c5babdb
2122
'gmp_random_seed', // this function throws an error instead of returning false since PHP 8.0
2223
'hash_hkdf', // this function throws an error instead of returning false since PHP 8.0

0 commit comments

Comments
 (0)