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 43bf319 commit 3b8a70cCopy full SHA for 3b8a70c
src/Type/EntityStorage/GetQueryReturnTypeExtension.php
@@ -25,7 +25,10 @@ public function getClass(): string
25
26
public function isMethodSupported(MethodReflection $methodReflection): bool
27
{
28
- return $methodReflection->getName() === 'getQuery';
+ return in_array($methodReflection->getName(), [
29
+ 'getQuery',
30
+ 'getAggregateQuery',
31
+ ], true);
32
}
33
34
public function getTypeFromMethodCall(
0 commit comments