| Total Complexity | 7 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class SimpleBillRepository implements BillRepositoryInterface |
||
| 18 | { |
||
| 19 | protected $bills; |
||
| 20 | |||
| 21 | public function findId(BillInterface $bill) |
||
| 24 | } |
||
| 25 | |||
| 26 | public function findIds(array $bills): array |
||
| 29 | } |
||
| 30 | |||
| 31 | public function findByIds(array $ids): array |
||
| 42 | } |
||
| 43 | |||
| 44 | public function save(BillInterface $bill) |
||
| 50 | } |
||
| 51 | |||
| 52 | public function findByUniqueness(BillInterface $bill) |
||
| 57 |