| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | final class SessionRepository extends EntityRepository implements SessionRepositoryInterface |
||
| 17 | { |
||
| 18 | 1 | public function prototype(): SessionInterface |
|
| 19 | { |
||
| 20 | 1 | return new Session(); |
|
| 21 | } |
||
| 22 | |||
| 23 | 1 | public function save(SessionInterface $session): void |
|
| 27 | } |
||
| 28 | |||
| 29 | 1 | public function delete(SessionInterface $session): void |
|
| 35 |