Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
24 | public function getAllWatchedMoviesByGuestSessionId(int $guestSessionId): Query |
||
25 | { |
||
26 | return $this->createQueryBuilder('wm') |
||
27 | ->where('wm.guestSession = :guestSessionId') |
||
28 | ->setParameter('guestSessionId', $guestSessionId) |
||
29 | ->addOrderBy('wm.id', 'DESC') |
||
30 | ->getQuery(); |
||
31 | } |
||
32 | } |
||
33 |