Skip to content

Commit fe58dfb

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

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
@@ -453,7 +453,11 @@ private function majorReleaseDefinitionProvider(): Generator
453453
'functions' => ['40', '50', '51', '52', '53', '55'],
454454
'iniEntries' => ['51'],
455455
'interfaces' => ['55'],
456-
'methods' => ['52', '53', '55', '56', '72', '73', '80', '82'],
456+
'methods' => [
457+
'52', '53', '55', '56',
458+
'72', '73',
459+
'80', '82', '83',
460+
],
457461
'releases' => array_merge(
458462
['40', '50', '51', '52', '53', '55'],
459463
self::PHP_RELEASES_7,

0 commit comments

Comments
 (0)