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