Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix always-true detection in in_array with union type haystack #3888

Open
wants to merge 3 commits into
base: 2.1.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Rules/Comparison/ImpossibleCheckTypeHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public function findSpecifiedType(
foreach ($haystackArrayTypes as $haystackArrayType) {
if ($haystackArrayType instanceof ConstantArrayType) {
foreach ($haystackArrayType->getValueTypes() as $i => $haystackArrayValueType) {
if ($haystackArrayType->isOptionalKey($i)) {
if ($haystackArrayValueType instanceof UnionType || $haystackArrayType->isOptionalKey($i)) {
continue;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -971,4 +971,18 @@ public function testAlwaysTruePregMatch(): void
$this->analyse([__DIR__ . '/data/always-true-preg-match.php'], []);
}

public function testBug12755(): void
{
$tipText = 'Because the type is coming from a PHPDoc, you can turn off this check by setting <fg=cyan>treatPhpDocTypesAsCertain: false</> in your <fg=cyan>%configurationFile%</>.';

$this->treatPhpDocTypesAsCertain = true;
$this->analyse([__DIR__ . '/data/bug-12755.php'], [
[
'Call to function in_array() with arguments null, array{key1: bool|null, key2: null} and true will always evaluate to true.',
51,
$tipText,
],
]);
}

}
90 changes: 90 additions & 0 deletions tests/PHPStan/Rules/Comparison/data/bug-12755.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<?php declare(strict_types = 1);

namespace Bug12755;

class MyEnum
{
public const ONE = 'one';
public const TWO = 'two';
public const THREE = 'three';
}

class HelloWorld
{
/**
* @param array{
* key1: ?int,
* key2: ?string,
* } $myArray
*/
public function testOther(array $myArray): ?\stdClass
{
if (\in_array(null, $myArray, true)) {
return null;
}

return (object) $myArray;
}

/**
* @param array{
* key1: ?bool,
* } $myArray
*/
public function testBool(array $myArray): ?\stdClass
{
if (\in_array(null, $myArray, true)) {
return null;
}

return (object) $myArray;
}
Comment on lines +29 to +41
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you should test a case which is expected to still emit an error after the change (a array which always contains null)


/**
* @param array{
* key1: ?bool,
* key2: null,
* } $myArray
*/
public function testNull(array $myArray): ?\stdClass
{
if (\in_array(null, $myArray, true)) {
return null;
}

return (object) $myArray;
}

/**
* @param list<MyEnum::*> $stack
*/
public function testEnum(array $stack): bool
{
return count($stack) === 1 && in_array(MyEnum::ONE, $stack, true);
}

/**
* @param array{1|2|3} $stack
* @param array{1|2|3, 1|2|3} $stack2
* @param array{1|2|3, 2|3} $stack3
* @param array{a?: 1, b: 2|3} $stack4
* @param array{a?: 1} $stack5
*/
public function sayHello(array $stack, array $stack2, array $stack3, array $stack4, array $stack5): void
{
if (in_array(1, $stack, true)) {
}

if (in_array(1, $stack2, true)) {
}

if (in_array(1, $stack3, true)) {
}

if (in_array(1, $stack4, true)) {
}

if (in_array(1, $stack5, true)) {
}
}
}
Loading