Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class Verify |
||
15 | { |
||
16 | /** |
||
17 | * @var \App\Auth\EmailDispensary |
||
18 | */ |
||
19 | private EmailDispensary $dispensary; |
||
20 | |||
21 | /** |
||
22 | * @var \Illuminate\Contracts\Routing\ResponseFactory |
||
23 | */ |
||
24 | private ResponseFactory $responseFactory; |
||
25 | |||
26 | 4 | public function __construct(EmailDispensary $dispensary, ResponseFactory $responseFactory) |
|
27 | { |
||
28 | 4 | $this->dispensary = $dispensary; |
|
29 | 4 | $this->responseFactory = $responseFactory; |
|
30 | 4 | } |
|
31 | |||
32 | 3 | public function __invoke(Guard $guard, VerifyRequest $request): Response |
|
49 | } |
||
50 | } |
||
52 |