| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | protected function assertFilterJoin( |
||
| 32 | QueryBuilderInterface $queryBuilder, |
||
| 33 | string $fieldName, |
||
| 34 | string $alias, |
||
| 35 | null|string|Composite|Base $joinCondition = null, |
||
| 36 | ?JoinConditionType $joinConditionType = null, |
||
| 37 | ?string $indexBy = null |
||
| 38 | ): void { |
||
| 39 | $queryBuilder->expects($this->once()) |
||
|
|
|||
| 40 | ->method('innerJoin') |
||
| 41 | ->with($fieldName, $alias, $joinConditionType, $joinCondition, $indexBy); |
||
| 42 | } |
||
| 44 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.