Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class ImportFinished extends Mailable |
||
14 | { |
||
15 | use Queueable, SerializesModels; |
||
|
|||
16 | |||
17 | public $time; |
||
18 | public $errors; |
||
19 | public $warnings; |
||
20 | public $messages; |
||
21 | public $url; |
||
22 | |||
23 | /** |
||
24 | * Create a new message instance. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function __construct(array $log) |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * Build the message. |
||
39 | * |
||
40 | * @return $this |
||
41 | */ |
||
42 | public function build() |
||
50 |