7
7
use PHPStan \Parser \LastConditionVisitor ;
8
8
use PHPStan \Rules \Rule ;
9
9
use PHPStan \Rules \RuleErrorBuilder ;
10
+ use PHPStan \TrinaryLogic ;
10
11
use PHPStan \Type \Constant \ConstantBooleanType ;
11
12
use PHPStan \Type \VerbosityLevel ;
12
13
use function sprintf ;
@@ -61,13 +62,32 @@ public function processNode(Node $node, Scope $scope): array
61
62
return $ ruleErrorBuilder ->treatPhpDocTypesAsCertainTip ();
62
63
};
63
64
65
+ $ verbosity = VerbosityLevel::value ();
66
+ if (
67
+ (
68
+ $ leftType ->isConstantScalarValue ()->yes ()
69
+ && $ leftType ->isString ()->yes ()
70
+ && $ rightType ->isConstantScalarValue ()->no ()
71
+ && $ rightType ->isString ()->yes ()
72
+ && TrinaryLogic::extremeIdentity ($ leftType ->isLowercaseString (), $ rightType ->isLowercaseString ())->maybe ()
73
+ ) || (
74
+ $ rightType ->isConstantScalarValue ()->yes ()
75
+ && $ rightType ->isString ()->yes ()
76
+ && $ leftType ->isConstantScalarValue ()->no ()
77
+ && $ leftType ->isString ()->yes ()
78
+ && TrinaryLogic::extremeIdentity ($ leftType ->isLowercaseString (), $ rightType ->isLowercaseString ())->maybe ()
79
+ )
80
+ ) {
81
+ $ verbosity = VerbosityLevel::precise ();
82
+ }
83
+
64
84
if (!$ nodeType ->getValue ()) {
65
85
return [
66
86
$ addTip (RuleErrorBuilder::message (sprintf (
67
87
'Strict comparison using %s between %s and %s will always evaluate to false. ' ,
68
88
$ node ->getOperatorSigil (),
69
- $ leftType ->describe (VerbosityLevel:: value () ),
70
- $ rightType ->describe (VerbosityLevel:: value () ),
89
+ $ leftType ->describe ($ verbosity ),
90
+ $ rightType ->describe ($ verbosity ),
71
91
)))->identifier (sprintf ('%s.alwaysFalse ' , $ node instanceof Node \Expr \BinaryOp \Identical ? 'identical ' : 'notIdentical ' ))->build (),
72
92
];
73
93
} elseif ($ this ->checkAlwaysTrueStrictComparison ) {
@@ -79,8 +99,8 @@ public function processNode(Node $node, Scope $scope): array
79
99
$ errorBuilder = $ addTip (RuleErrorBuilder::message (sprintf (
80
100
'Strict comparison using %s between %s and %s will always evaluate to true. ' ,
81
101
$ node ->getOperatorSigil (),
82
- $ leftType ->describe (VerbosityLevel:: value () ),
83
- $ rightType ->describe (VerbosityLevel:: value () ),
102
+ $ leftType ->describe ($ verbosity ),
103
+ $ rightType ->describe ($ verbosity ),
84
104
)));
85
105
if ($ isLast === false && !$ this ->reportAlwaysTrueInLastCondition ) {
86
106
$ errorBuilder ->addTip ('Remove remaining cases below this one and this error will disappear too. ' );
0 commit comments