1 | <?php |
||
17 | class InterestedMovieRepository extends ServiceEntityRepository |
||
18 | { |
||
19 | 2 | public function __construct(RegistryInterface $registry) |
|
23 | |||
24 | 2 | public function findOneById(int $interestedMovieId, int $userId): ?UserInterestedMovie |
|
31 | |||
32 | 2 | public function findOneByMovieId(int $movieId, int $userId): ?UserInterestedMovie |
|
39 | } |
||
40 |