Skip to content

Commit a56dac2

Browse files
committed
[PHP 8.3 support](#133) : implement [Deprecate functions with overloaded signatures](php/php-src#11703)
1 parent f0807ba commit a56dac2

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[
2+
{
3+
"class_name": "DatePeriod",
4+
"name": "createFromISO8601String",
5+
"static": true,
6+
"ext_min": "8.3.0beta1",
7+
"php_min": "8.3.0beta1"
8+
}
9+
]

src/Application/Command/Init/InitHandler.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,11 @@ private function majorReleaseDefinitionProvider(): Generator
405405
'functions' => ['40', '50', '51', '52', '53', '55'],
406406
'iniEntries' => ['51'],
407407
'interfaces' => ['55'],
408-
'methods' => ['52', '53', '55', '56', '72', '73', '80', '82'],
408+
'methods' => [
409+
'52', '53', '55', '56',
410+
'72', '73',
411+
'80', '82', '83',
412+
],
409413
'releases' => array_merge(
410414
['40', '50', '51', '52', '53', '55'],
411415
self::PHP_RELEASES_7,

0 commit comments

Comments
 (0)