File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
/** @param IntlTimeZone|string|int|float|null $countryOrRawOffset */
4
+ #[\Until('8.5 ' )]
4
5
function intltz_create_enumeration ($ countryOrRawOffset = null ): \IntlIterator |false
5
6
{
7
+ }
8
+ #[\Since('8.5 ' )]
9
+ function intltz_create_enumeration (string |int |null $ countryOrRawOffset = null ): \IntlIterator |false
10
+ {
6
11
}
Original file line number Diff line number Diff line change @@ -100,14 +100,22 @@ public static function createDefault()
100
100
{
101
101
}
102
102
/**
103
- * @param (IntlTimeZone | string | int | float | null) $countryOrRawOffset
104
103
* @tentative-return-type
105
104
* @alias intltz_create_enumeration
106
105
* @return (IntlIterator | false)
107
106
*/
107
+ #[\Until('8.5 ' )]
108
108
public static function createEnumeration ($ countryOrRawOffset = null )
109
109
{
110
110
}
111
+ /**
112
+ * @tentative-return-type
113
+ * @alias intltz_create_enumeration
114
+ */
115
+ #[\Since('8.5 ' )]
116
+ public static function createEnumeration (string |int |null $ countryOrRawOffset = null )
117
+ {
118
+ }
111
119
/**
112
120
* @tentative-return-type
113
121
* @alias intltz_create_time_zone
You can’t perform that action at this time.
0 commit comments