| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | 1 | public function getFreeModulesForUserQuery(UserInterface $user) |
|
| 19 | { |
||
| 20 | 1 | return $this->createQueryBuilder('module') |
|
| 21 | 1 | ->leftJoin('module.modulesUser mu WITH mu.user = :userId', false) |
|
|
|
|||
| 22 | 1 | ->where('mu IS NULL') |
|
| 23 | 1 | ->setParameter('userId', $user->getId()) |
|
| 24 | 1 | ->orderBy('module.title', 'ASC'); |
|
| 25 | } |
||
| 26 | |||
| 34 | } |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: