Skip to content

Commit 68f6e25

Browse files
staabmondrejmirtes
authored andcommitted
Prevent warning in range() on php 7.x
1 parent 9d9fb56 commit 68f6e25

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/Type/Php/RangeFunctionReturnTypeExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function getTypeFromFunctionCall(FunctionReflection $functionReflection,
6868
}
6969

7070
try {
71-
$rangeValues = range($startConstant->getValue(), $endConstant->getValue(), $stepConstant->getValue());
71+
$rangeValues = @range($startConstant->getValue(), $endConstant->getValue(), $stepConstant->getValue());
7272
} catch (ValueError) {
7373
continue;
7474
}

tests/PHPStan/Analyser/LegacyNodeScopeResolverTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -5685,6 +5685,10 @@ public function dataRangeFunction(): array
56855685
'array{2, 4}',
56865686
'range(2, 5, 2)',
56875687
],
5688+
[
5689+
'array{2, 0}',
5690+
"range(2, '', 2)",
5691+
],
56885692
[
56895693
PHP_VERSION_ID < 80300 ? 'array{2.0, 3.0, 4.0, 5.0}' : 'array{2, 3, 4, 5}',
56905694
'range(2, 5, 1.0)',

0 commit comments

Comments
 (0)