Skip to content

Commit dc5d8f4

Browse files
committed
Decorate reasons when comparing ConstantArrayType
1 parent 34bacd7 commit dc5d8f4

File tree

5 files changed

+37
-1
lines changed

5 files changed

+37
-1
lines changed

phpstan-baseline.neon

+13
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ parameters:
6666
count: 1
6767
path: src/Analyser/NodeScopeResolver.php
6868

69+
-
70+
message: "#^Doing instanceof PHPStan\\\\Type\\\\Constant\\\\ConstantBooleanType is error\\-prone and deprecated\\. Use Type\\:\\:isTrue\\(\\) or Type\\:\\:isFalse\\(\\) instead\\.$#"
71+
count: 1
72+
path: src/Analyser/RicherScopeGetTypeHelper.php
73+
6974
-
7075
message: "#^Doing instanceof PHPStan\\\\Type\\\\ConstantScalarType is error\\-prone and deprecated\\. Use Type\\:\\:isConstantScalarValue\\(\\) or Type\\:\\:getConstantScalarTypes\\(\\) or Type\\:\\:getConstantScalarValues\\(\\) instead\\.$#"
7176
count: 2
@@ -487,6 +492,14 @@ parameters:
487492
count: 2
488493
path: src/Rules/Comparison/NumberComparisonOperatorsConstantConditionRule.php
489494

495+
-
496+
message: """
497+
#^Call to deprecated method doNotTreatPhpDocTypesAsCertain\\(\\) of interface PHPStan\\\\Analyser\\\\Scope\\:
498+
Use getNativeType\\(\\)$#
499+
"""
500+
count: 2
501+
path: src/Rules/Comparison/StrictComparisonOfDifferentTypesRule.php
502+
490503
-
491504
message: "#^Doing instanceof PHPStan\\\\Type\\\\Constant\\\\ConstantBooleanType is error\\-prone and deprecated\\. Use Type\\:\\:isTrue\\(\\) or Type\\:\\:isFalse\\(\\) instead\\.$#"
492505
count: 2

src/Analyser/RicherScopeGetTypeHelper.php

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ public function getIdenticalResult(Scope $scope, Identical $expr): TypeResult
3636
$leftType = $scope->getType($expr->left);
3737
$rightType = $scope->getType($expr->right);
3838

39+
if (!$scope instanceof MutatingScope) {
40+
return $this->initializerExprTypeResolver->resolveIdenticalType($leftType, $rightType);
41+
}
42+
3943
if (
4044
(
4145
$expr->left instanceof Node\Expr\PropertyFetch

src/Type/Constant/ConstantArrayType.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ public function isSuperTypeOfWithReason(Type $type): IsSuperTypeOfResult
390390

391391
$isValueSuperType = $this->valueTypes[$i]->isSuperTypeOfWithReason($type->getOffsetValueType($keyType));
392392
if ($isValueSuperType->no()) {
393-
return $isValueSuperType;
393+
return $isValueSuperType->decorateReasons(static fn (string $reason) => sprintf('Offset %s: %s', $keyType->describe(VerbosityLevel::value()), $reason));
394394
}
395395
$results[] = $isValueSuperType;
396396
}

tests/PHPStan/Rules/Comparison/StrictComparisonOfDifferentTypesRuleTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,11 @@ public function testStrictComparison(): void
289289
1034,
290290
'Type null has already been eliminated from mixed.',
291291
],
292+
[
293+
'Strict comparison using !== between array{1, mixed, 3} and array{int, null, int} will always evaluate to true.',
294+
1048,
295+
'Offset 1: Type null has already been eliminated from mixed.',
296+
],
292297
],
293298
);
294299
}

tests/PHPStan/Rules/Comparison/data/strict-comparison.php

+14
Original file line numberDiff line numberDiff line change
@@ -1036,4 +1036,18 @@ public function doFoo($m): void
10361036
}
10371037
}
10381038

1039+
public function doBar($m, int $i, int $j): void
1040+
{
1041+
if ($m === null) {
1042+
return;
1043+
}
1044+
1045+
$a = [1, $m, 3];
1046+
$b = [$i, null, $j];
1047+
1048+
if ($a !== $b) {
1049+
1050+
}
1051+
}
1052+
10391053
}

0 commit comments

Comments
 (0)