Total Complexity | 7 |
Total Lines | 56 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | class ExceptionOccured extends Mailable |
||
10 | { |
||
11 | use Queueable; |
||
12 | use SerializesModels; |
||
|
|||
13 | private $content; |
||
14 | |||
15 | /** |
||
16 | * Create a new message instance. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | public function __construct($content) |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Build the message. |
||
27 | * |
||
28 | * @return $this |
||
29 | */ |
||
30 | public function build() |
||
67 |