Skip to content

Commit 1650518

Browse files
committed
Report precise offsets in errors
Fixes phpstan/phpstan#11760
1 parent 70a3e07 commit 1650518

3 files changed

+6
-4
lines changed

src/Rules/Arrays/NonexistentOffsetInArrayDimFetchCheck.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
use PHPStan\Type\TypeUtils;
1515
use PHPStan\Type\UnionType;
1616
use PHPStan\Type\VerbosityLevel;
17+
use function count;
1718
use function sprintf;
1819

1920
final class NonexistentOffsetInArrayDimFetchCheck
@@ -55,7 +56,7 @@ public function check(
5556

5657
if ($type->hasOffsetValueType($dimType)->no()) {
5758
return [
58-
RuleErrorBuilder::message(sprintf('Offset %s does not exist on %s.', $dimType->describe(VerbosityLevel::value()), $type->describe(VerbosityLevel::value())))
59+
RuleErrorBuilder::message(sprintf('Offset %s does not exist on %s.', $dimType->describe(count($dimType->getConstantStrings()) > 0 ? VerbosityLevel::precise() : VerbosityLevel::value()), $type->describe(VerbosityLevel::value())))
5960
->identifier('offsetAccess.notFound')
6061
->build(),
6162
];
@@ -104,7 +105,7 @@ public function check(
104105

105106
if ($report) {
106107
return [
107-
RuleErrorBuilder::message(sprintf('Offset %s might not exist on %s.', $dimType->describe(VerbosityLevel::value()), $type->describe(VerbosityLevel::value())))
108+
RuleErrorBuilder::message(sprintf('Offset %s might not exist on %s.', $dimType->describe(count($dimType->getConstantStrings()) > 0 ? VerbosityLevel::precise() : VerbosityLevel::value()), $type->describe(VerbosityLevel::value())))
108109
->identifier('offsetAccess.notFound')
109110
->build(),
110111
];

src/Rules/Arrays/NonexistentOffsetInArrayDimFetchRule.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
use PHPStan\Type\ErrorType;
1313
use PHPStan\Type\Type;
1414
use PHPStan\Type\VerbosityLevel;
15+
use function count;
1516
use function sprintf;
1617

1718
/**
@@ -74,7 +75,7 @@ public function processNode(Node $node, Scope $scope): array
7475
return [
7576
RuleErrorBuilder::message(sprintf(
7677
'Cannot access offset %s on %s.',
77-
$dimType->describe(VerbosityLevel::value()),
78+
$dimType->describe(count($dimType->getConstantStrings()) > 0 ? VerbosityLevel::precise() : VerbosityLevel::value()),
7879
$isOffsetAccessibleType->describe(VerbosityLevel::value()),
7980
))->identifier('offsetAccess.nonOffsetAccessible')->build(),
8081
];

tests/PHPStan/Rules/Arrays/NonexistentOffsetInArrayDimFetchRuleTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public function testRule(): void
162162
443,
163163
],
164164
[
165-
'Offset \'feature_pretty…\' might not exist on array{version: non-falsy-string, commit: string|null, pretty_version: string|null, feature_version: non-falsy-string, feature_pretty_version?: string|null}.',
165+
'Offset \'feature_pretty_version\' might not exist on array{version: non-falsy-string, commit: string|null, pretty_version: string|null, feature_version: non-falsy-string, feature_pretty_version?: string|null}.',
166166
504,
167167
],
168168
[

0 commit comments

Comments
 (0)