Total Complexity | 3 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class InvitationMail extends Mailable |
||
15 | { |
||
16 | use Queueable, SerializesModels; |
||
|
|||
17 | |||
18 | private $invite; |
||
19 | |||
20 | /** |
||
21 | * Create a new message instance. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | public function __construct(Invite $invite) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Build the message. |
||
32 | * |
||
33 | * @return $this |
||
34 | */ |
||
35 | public function build() |
||
55 |