| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | final class UserRepository extends EntityRepository implements UserRepositoryInterface |
||
| 18 | { |
||
| 19 | 1 | public function prototype(): UserInterface |
|
| 20 | { |
||
| 21 | 1 | return new User(); |
|
| 22 | } |
||
| 23 | |||
| 24 | 1 | public function save(UserInterface $user): void |
|
| 28 | } |
||
| 29 | |||
| 30 | 1 | public function delete(UserInterface $user): void |
|
| 36 |