Skip to content

Commit ddb9f66

Browse files
fix
Co-authored-by: Vincent Langlet <[email protected]>
1 parent 6c1e004 commit ddb9f66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Rules/Comparison/ImpossibleCheckTypeHelper.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ public function findSpecifiedType(
6969
if ($functionName === 'assert' && $argsCount >= 1) {
7070
$arg = $node->getArgs()[0]->value;
7171
$assertValue = ($this->treatPhpDocTypesAsCertain ? $scope->getType($arg) : $scope->getNativeType($arg))->toBoolean();
72-
if (! $assertValue->isTrue()->yes() && ! $assertValue->isFalse()->yes()) {
72+
$assertValueIsTrue = $assertValue->isTrue()->yes();
73+
if (! $assertValueIsTrue && ! $assertValue->isFalse()->yes()) {
7374
return null;
7475
}
7576

76-
/** @var bool */
77-
return $assertValue->getConstantScalarValues()[0];
77+
return $assertValueIsTrue;
7878
}
7979
if (in_array($functionName, [
8080
'class_exists',

0 commit comments

Comments
 (0)