Closed ghost closed 1 year ago
Given this config
includes: - vendor/phpstan/phpstan-strict-rules/rules.neon parameters: strictRules: allRules: false
and this code
$a = 1; if ($a === 1) { }
I still get an error Strict comparison using === between 1 and 1 will always evaluate to true.
Strict comparison using === between 1 and 1 will always evaluate to true.
See https://github.com/phpstan/phpstan-strict-rules/issues/185#issuecomment-1227365019
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Given this config
and this code
I still get an error
Strict comparison using === between 1 and 1 will always evaluate to true.