| Total Complexity | 3 | 
| Total Lines | 24 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 17 | class BookmarkRepository extends ServiceEntityRepository implements BookmarkRepositoryInterface  | 
            ||
| 18 | { | 
            ||
| 19 | public function __construct(RegistryInterface $registry)  | 
            ||
| 20 |     { | 
            ||
| 21 | parent::__construct($registry, Bookmark::class);  | 
            ||
| 22 | }  | 
            ||
| 23 | |||
| 24 | public function getAllForLesson(LessonInterface $lesson): array  | 
            ||
| 31 | ;  | 
            ||
| 32 | }  | 
            ||
| 33 | |||
| 34 | public function getOneById(string $id): ?BookmarkInterface  | 
            ||
| 41 | ;  | 
            ||
| 42 | }  | 
            ||
| 44 |