Total Complexity | 1 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
25 | class BookRepository extends AbstractRepository implements RepositoryInterface |
||
26 | { |
||
27 | /** |
||
28 | * BookRepository constructor. |
||
29 | * |
||
30 | * @param RegistryInterface $registry |
||
31 | */ |
||
32 | public function __construct(RegistryInterface $registry) |
||
33 | { |
||
34 | parent::__construct($registry, Book::class); |
||
35 | } |
||
37 |