Total Complexity | 4 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class Verify |
||
15 | { |
||
16 | private EmailDispensary $dispensary; |
||
17 | |||
18 | private ResponseFactory $responseFactory; |
||
19 | |||
20 | public function __construct(EmailDispensary $dispensary, ResponseFactory $responseFactory) |
||
21 | { |
||
22 | $this->dispensary = $dispensary; |
||
23 | $this->responseFactory = $responseFactory; |
||
24 | } |
||
25 | |||
26 | 4 | public function __invoke(Guard $guard, VerifyRequest $request): Response |
|
43 | 1 | } |
|
44 | } |
||
46 |