We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c1e004 commit ddb9f66Copy full SHA for ddb9f66
src/Rules/Comparison/ImpossibleCheckTypeHelper.php
@@ -69,12 +69,12 @@ public function findSpecifiedType(
69
if ($functionName === 'assert' && $argsCount >= 1) {
70
$arg = $node->getArgs()[0]->value;
71
$assertValue = ($this->treatPhpDocTypesAsCertain ? $scope->getType($arg) : $scope->getNativeType($arg))->toBoolean();
72
- if (! $assertValue->isTrue()->yes() && ! $assertValue->isFalse()->yes()) {
+ $assertValueIsTrue = $assertValue->isTrue()->yes();
73
+ if (! $assertValueIsTrue && ! $assertValue->isFalse()->yes()) {
74
return null;
75
}
76
- /** @var bool */
77
- return $assertValue->getConstantScalarValues()[0];
+ return $assertValueIsTrue;
78
79
if (in_array($functionName, [
80
'class_exists',
0 commit comments