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