Skip to content

Commit 2d3595e

Browse files
Explicitly ignore equal.notAllowed error
1 parent cbc04c4 commit 2d3595e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Framework/Constraint/Traversable/TraversableContainsEqual.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ protected function matches(mixed $other): bool
2727
}
2828

2929
foreach ($other as $element) {
30-
/* @noinspection TypeUnsafeComparisonInspection */
30+
/** @phpstan-ignore equal.notAllowed */
3131
if ($this->value() == $element) {
3232
return true;
3333
}

0 commit comments

Comments
 (0)