Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
23 | 1 | public function findAllByMovie(string $locale, int $movieId): Query |
|
24 | { |
||
25 | 1 | return $this->createQueryBuilder('mc') |
|
26 | 1 | ->where('mc.movie = :movieId AND mc.locale = :locale') |
|
27 | 1 | ->setParameter('movieId', $movieId) |
|
28 | 1 | ->setParameter('locale', $locale) |
|
29 | 1 | ->getQuery(); |
|
30 | } |
||
31 | } |
||
32 |