| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class BuoyRepository extends EntityRepository implements BuoyRepositoryInterface |
||
| 16 | { |
||
| 17 | public function prototype(): BuoyInterface |
||
| 18 | { |
||
| 19 | return new Buoy(); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function save(BuoyInterface $buoy): void |
||
| 27 | } |
||
| 28 | |||
| 29 | public function delete(BuoyInterface $buoy): void |
||
| 34 | } |
||
| 35 | |||
| 36 | public function findByUserId(int $userId): array |
||
| 41 |