@@ -103,18 +103,35 @@ public static function create(?string $locale, int $dateType, int $timeType, $ti
103
103
* @param IntlCalendar|int|null $calendar
104
104
*/
105
105
#[\Since('8.1 ' )]
106
+ #[\Until('8.5 ' )]
106
107
public function __construct (?string $ locale , int $ dateType = IntlDateFormatter::FULL , int $ timeType = IntlDateFormatter::FULL , $ timezone = null , $ calendar = null , ?string $ pattern = null )
107
108
{
108
109
}
110
+ /**
111
+ * @param IntlCalendar|int|null $calendar
112
+ */
113
+ #[\Since('8.5 ' )]
114
+ public function __construct (?string $ locale , int $ dateType = IntlDateFormatter::FULL , int $ timeType = IntlDateFormatter::FULL , IntlTimeZone |DateTimeZone |string |null $ timezone = null , $ calendar = null , ?string $ pattern = null )
115
+ {
116
+ }
109
117
/**
110
118
* @param IntlTimeZone|DateTimeZone|string|null $timezone
111
119
* @tentative-return-type
112
120
* @alias datefmt_create
113
121
*/
114
122
#[\Since('8.1 ' )]
123
+ #[\Until('8.5 ' )]
115
124
public static function create (?string $ locale , int $ dateType = IntlDateFormatter::FULL , int $ timeType = IntlDateFormatter::FULL , $ timezone = null , IntlCalendar |int |null $ calendar = null , ?string $ pattern = null )
116
125
{
117
126
}
127
+ /**
128
+ * @tentative-return-type
129
+ * @alias datefmt_create
130
+ */
131
+ #[\Since('8.5 ' )]
132
+ public static function create (?string $ locale , int $ dateType = IntlDateFormatter::FULL , int $ timeType = IntlDateFormatter::FULL , IntlTimeZone |DateTimeZone |string |null $ timezone = null , IntlCalendar |int |null $ calendar = null , ?string $ pattern = null )
133
+ {
134
+ }
118
135
/**
119
136
* @tentative-return-type
120
137
* @alias datefmt_get_datetype
@@ -172,14 +189,20 @@ public function getTimeZone()
172
189
{
173
190
}
174
191
/**
175
- * @param (IntlTimeZone | DateTimeZone | string | null) $timezone
176
192
* @tentative-return-type
177
- * @alias datefmt_set_timezone
178
193
* @return (bool | null)
179
194
*/
195
+ #[\Until('8.5 ' )]
180
196
public function setTimeZone ($ timezone )
181
197
{
182
198
}
199
+ /**
200
+ * @tentative-return-type
201
+ */
202
+ #[\Since('8.5 ' )]
203
+ public function setTimeZone (IntlTimeZone |DateTimeZone |string |null $ timezone )
204
+ {
205
+ }
183
206
/**
184
207
* @tentative-return-type
185
208
* @alias datefmt_set_pattern
0 commit comments