Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
16 | class DemoLessonRepository extends ServiceEntityRepository implements DemoLessonRepositoryInterface |
||
17 | { |
||
18 | public function __construct(ManagerRegistry $registry) |
||
19 | { |
||
20 | parent::__construct($registry, DemoLesson::class); |
||
21 | } |
||
22 | |||
23 | public function findAllForCourse(CourseInterface $course): array |
||
32 | } |
||
33 | } |
||
34 |