Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class InvitationLinkToOrganization extends Mailable |
||
11 | { |
||
12 | use Queueable, SerializesModels; |
||
|
|||
13 | |||
14 | private $hash; |
||
15 | private $email; |
||
16 | private $firstname; |
||
17 | private $lastname; |
||
18 | private $organization; |
||
19 | |||
20 | public function __construct(string $hash, string $email, string $organization, string $firstname = null, string $lastname = null) |
||
27 | } |
||
28 | |||
29 | public function build() |
||
39 |