Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class AuthenticationDetailMail extends Mailable |
||
10 | { |
||
11 | use Queueable, SerializesModels; |
||
|
|||
12 | |||
13 | public $email; |
||
14 | |||
15 | public $name; |
||
16 | |||
17 | public $password; |
||
18 | |||
19 | /** |
||
20 | * Create a new message instance. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | public function __construct($email, $name, $password) |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Build the message. |
||
33 | * |
||
34 | * @return $this |
||
35 | */ |
||
36 | public function build() |
||
41 |