Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
20 | public function retrieveOnApplicationByUsername(ApplicationInterface $application, $username) |
||
21 | { |
||
22 | return $this->entityRepository |
||
|
|||
23 | ->createQueryBuilder('ac') |
||
24 | ->innerJoin('ac.applications', 'app') |
||
25 | ->where('ac.username = :username') |
||
26 | ->andWhere('app.id = :application') |
||
27 | ->setParameter('application', $application->getId()) |
||
28 | ->setParameter('username', $username) |
||
29 | ->getQuery() |
||
30 | ->getOneOrNullResult(); |
||
31 | } |
||
32 | } |
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: