| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | final class UserRepository extends EntityRepository implements UserRepositoryInterface |
||
| 19 | { |
||
| 20 | 1 | #[Pure] |
|
| 21 | public function prototype(): UserInterface |
||
| 22 | { |
||
| 23 | 1 | return new User(); |
|
| 24 | } |
||
| 25 | |||
| 26 | 1 | public function save(UserInterface $user): void |
|
| 30 | } |
||
| 31 | |||
| 32 | 1 | public function delete(UserInterface $user): void |
|
| 38 |