| Total Complexity | 2 | 
| Total Lines | 14 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 16 | class BookmarkRepository extends ServiceEntityRepository implements BookmarkRepositoryInterface  | 
            ||
| 17 | { | 
            ||
| 18 | public function __construct(RegistryInterface $registry)  | 
            ||
| 19 |     { | 
            ||
| 20 | parent::__construct($registry, Bookmark::class);  | 
            ||
| 21 | }  | 
            ||
| 22 | |||
| 23 | public function getAllForLesson(LessonInterface $lesson): array  | 
            ||
| 30 | ;  | 
            ||
| 31 | }  | 
            ||
| 33 |