Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace Core\Repositories; |
| 4 | |
| 5 | use Core\Models\Livro; |
| 6 | |
| 7 | interface ILivrosRepository |
| 8 | { |
| 9 | public function save(Livro $e): Livro; |
| 10 | public function findById(int $id): ?Livro; |
| 11 | public function findBy(array $condition, int $page, int $limit): array; |
| 12 | } |
| 13 |