| Total Complexity | 11 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 69.23% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class UserChecker implements UserCheckerInterface { |
||
| 12 | |||
| 13 | public function __construct(private DateHelper $dateHelper) |
||
| 14 | { |
||
| 15 | } |
||
| 16 | 16 | ||
| 17 | 16 | /** |
|
| 18 | 16 | * @inheritDoc |
|
| 19 | 16 | */ |
|
| 20 | public function checkPreAuth(UserInterface $user) { } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @inheritDoc |
||
| 24 | */ |
||
| 25 | public function checkPostAuth(UserInterface $user) { |
||
| 48 | } |