Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class ListImported extends Mailable |
||
14 | { |
||
15 | use Queueable, SerializesModels; |
||
|
|||
16 | |||
17 | public $list; |
||
18 | |||
19 | /** |
||
20 | * ListImported constructor. |
||
21 | * @param MailingList $list |
||
22 | */ |
||
23 | public function __construct(MailingList $list) |
||
24 | { |
||
25 | $this->list = $list; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Build the message. |
||
30 | * |
||
31 | * @return $this |
||
32 | */ |
||
33 | public function build() |
||
38 | } |
||
39 | } |
||
40 |