forked from phpstan/phpstan-src
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhpVersion.php
298 lines (237 loc) · 6.14 KB
/
PhpVersion.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<?php declare(strict_types = 1);
namespace PHPStan\Php;
use function floor;
/** @api */
class PhpVersion
{
public function __construct(private int $versionId)
{
}
public function getVersionId(): int
{
return $this->versionId;
}
public function getVersionString(): string
{
$first = (int) floor($this->versionId / 10000);
$second = (int) floor(($this->versionId % 10000) / 100);
$third = (int) floor($this->versionId % 100);
return $first . '.' . $second . ($third !== 0 ? '.' . $third : '');
}
public function supportsNullCoalesceAssign(): bool
{
return $this->versionId >= 70400;
}
public function supportsParameterContravariance(): bool
{
return $this->versionId >= 70400;
}
public function supportsReturnCovariance(): bool
{
return $this->versionId >= 70400;
}
public function supportsNoncapturingCatches(): bool
{
return $this->versionId >= 80000;
}
public function supportsNativeUnionTypes(): bool
{
return $this->versionId >= 80000;
}
public function deprecatesRequiredParameterAfterOptional(): bool
{
return $this->versionId >= 80000;
}
public function deprecatesRequiredParameterAfterOptionalNullableAndDefaultNull(): bool
{
return $this->versionId >= 80100;
}
public function deprecatesRequiredParameterAfterOptionalUnionOrMixed(): bool
{
return $this->versionId >= 80300;
}
public function supportsLessOverridenParametersWithVariadic(): bool
{
return $this->versionId >= 80000;
}
public function supportsThrowExpression(): bool
{
return $this->versionId >= 80000;
}
public function supportsClassConstantOnExpression(): bool
{
return $this->versionId >= 80000;
}
public function supportsLegacyConstructor(): bool
{
return $this->versionId < 80000;
}
public function supportsPromotedProperties(): bool
{
return $this->versionId >= 80000;
}
public function supportsParameterTypeWidening(): bool
{
return $this->versionId >= 70200;
}
public function supportsUnsetCast(): bool
{
return $this->versionId < 80000;
}
public function supportsNamedArguments(): bool
{
return $this->versionId >= 80000;
}
public function throwsTypeErrorForInternalFunctions(): bool
{
return $this->versionId >= 80000;
}
public function throwsValueErrorForInternalFunctions(): bool
{
return $this->versionId >= 80000;
}
public function supportsHhPrintfSpecifier(): bool
{
return $this->versionId >= 80000;
}
public function isEmptyStringValidAliasForNoneInMbSubstituteCharacter(): bool
{
return $this->versionId < 80000;
}
public function supportsAllUnicodeScalarCodePointsInMbSubstituteCharacter(): bool
{
return $this->versionId >= 70200;
}
public function isNumericStringValidArgInMbSubstituteCharacter(): bool
{
return $this->versionId < 80000;
}
public function isNullValidArgInMbSubstituteCharacter(): bool
{
return $this->versionId >= 80000;
}
public function isInterfaceConstantImplicitlyFinal(): bool
{
return $this->versionId < 80100;
}
public function supportsFinalConstants(): bool
{
return $this->versionId >= 80100;
}
public function supportsReadOnlyProperties(): bool
{
return $this->versionId >= 80100;
}
public function supportsEnums(): bool
{
return $this->versionId >= 80100;
}
public function supportsPureIntersectionTypes(): bool
{
return $this->versionId >= 80100;
}
public function supportsCaseInsensitiveConstantNames(): bool
{
return $this->versionId < 80000;
}
public function hasStricterRoundFunctions(): bool
{
return $this->versionId >= 80000;
}
public function hasTentativeReturnTypes(): bool
{
return $this->versionId >= 80100;
}
public function supportsFirstClassCallables(): bool
{
return $this->versionId >= 80100;
}
public function supportsArrayUnpackingWithStringKeys(): bool
{
return $this->versionId >= 80100;
}
public function throwsOnInvalidMbStringEncoding(): bool
{
return $this->versionId >= 80000;
}
public function supportsPassNoneEncodings(): bool
{
return $this->versionId < 70300;
}
public function producesWarningForFinalPrivateMethods(): bool
{
return $this->versionId >= 80000;
}
public function deprecatesDynamicProperties(): bool
{
return $this->versionId >= 80200;
}
public function strSplitReturnsEmptyArray(): bool
{
return $this->versionId >= 80200;
}
public function supportsDisjunctiveNormalForm(): bool
{
return $this->versionId >= 80200;
}
public function serializableRequiresMagicMethods(): bool
{
return $this->versionId >= 80100;
}
public function arrayFunctionsReturnNullWithNonArray(): bool
{
return $this->versionId < 80000;
}
// see https://www.php.net/manual/en/migration80.incompatible.php#migration80.incompatible.core.string-number-comparision
public function castsNumbersToStringsOnLooseComparison(): bool
{
return $this->versionId >= 80000;
}
public function supportsCallableInstanceMethods(): bool
{
return $this->versionId < 80000;
}
public function supportsJsonValidate(): bool
{
return $this->versionId >= 80300;
}
public function supportsConstantsInTraits(): bool
{
return $this->versionId >= 80200;
}
public function supportsNativeTypesInClassConstants(): bool
{
return $this->versionId >= 80300;
}
public function supportsAbstractTraitMethods(): bool
{
return $this->versionId >= 80000;
}
public function supportsOverrideAttribute(): bool
{
return $this->versionId >= 80300;
}
public function supportsDynamicClassConstantFetch(): bool
{
return $this->versionId >= 80300;
}
public function supportsReadOnlyClasses(): bool
{
return $this->versionId >= 80200;
}
public function supportsReadOnlyAnonymousClasses(): bool
{
return $this->versionId >= 80300;
}
public function supportsNeverReturnTypeInArrowFunction(): bool
{
return $this->versionId >= 80200;
}
// see https://www.php.net/manual/en/migration74.incompatible.php#migration74.incompatible.pcre
public function returnsPregUnmatchedCapturingGroups(): bool
{
// When PREG_UNMATCHED_AS_NULL mode is used, trailing unmatched capturing groups will now also be set to null (or [null, -1] if offset capture is enabled).
// This means that the size of the $matches will always be the same.
return $this->versionId >= 70400;
}
}