Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class AccountDeleted extends Mailable |
||
10 | { |
||
11 | use Queueable, SerializesModels; |
||
|
|||
12 | |||
13 | /** |
||
14 | * @var \Illuminate\Database\Eloquent\Model|null|object|static |
||
15 | */ |
||
16 | private $user; |
||
17 | |||
18 | /** |
||
19 | * @var mixed |
||
20 | */ |
||
21 | private $siteEmail; |
||
22 | |||
23 | /** |
||
24 | * @var mixed |
||
25 | */ |
||
26 | private $siteTitle; |
||
27 | |||
28 | /** |
||
29 | * Create a new message instance. |
||
30 | */ |
||
31 | public function __construct($user) |
||
32 | { |
||
33 | $this->user = $user; |
||
34 | $this->siteEmail = config('mail.from.address'); |
||
35 | $this->siteTitle = config('app.name'); |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @throws \Exception |
||
40 | */ |
||
41 | public function build(): static |
||
44 | } |
||
45 | } |
||
46 |