Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class customMail extends Mailable |
||
10 | { |
||
11 | use Queueable, SerializesModels; |
||
12 | |||
13 | protected $body; |
||
14 | |||
15 | public $subject; |
||
16 | |||
17 | /** |
||
18 | * Create a new message instance. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function __construct($subject, $body) |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Build the message. |
||
30 | * |
||
31 | * @return $this |
||
32 | */ |
||
33 | public function build() |
||
40 |