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