| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Contact extends Mailable |
||
| 12 | { |
||
| 13 | use Queueable; |
||
| 14 | use SerializesModels; |
||
|
|
|||
| 15 | |||
| 16 | /** |
||
| 17 | * The details of the mail. |
||
| 18 | * |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | public $details; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Create a new message instance. |
||
| 25 | * |
||
| 26 | * @return void |
||
| 27 | */ |
||
| 28 | public function __construct(array $details) |
||
| 29 | { |
||
| 30 | $this->details = $details; |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Build the message. |
||
| 35 | * |
||
| 36 | * @return $this |
||
| 37 | */ |
||
| 38 | public function build() |
||
| 43 | } |
||
| 44 | } |
||
| 45 |