We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de8961d commit 17ad9bcCopy full SHA for 17ad9bc
src/Type/Doctrine/QueryBuilder/SimpleQueryBuilderType.php
@@ -24,7 +24,7 @@ public function isSuperTypeOf(Type $type): TrinaryLogic
24
$thisCount = count($this->getMethodCalls());
25
$thatCount = count($type->getMethodCalls());
26
27
- return TrinaryLogic::createFromBoolean($thisCount >= $thatCount);
+ return TrinaryLogic::createFromBoolean($thisCount === $thatCount);
28
}
29
30
return parent::isSuperTypeOf($type);
0 commit comments