Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class Verify extends Mailable implements ShouldQueue |
||
14 | { |
||
15 | use Queueable; |
||
16 | use SerializesModels; |
||
17 | |||
18 | private string $token; |
||
19 | |||
20 | private string $email; |
||
21 | |||
22 | public function __construct(string $token, string $email) |
||
23 | { |
||
24 | $this->token = $token; |
||
25 | $this->email = $email; |
||
26 | } |
||
27 | |||
28 | public function build(UrlGenerator $urlGenerator) |
||
35 | ]); |
||
36 | } |
||
38 |