Total Complexity | 2 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class AccountChange extends Mailable |
||
11 | { |
||
12 | use Queueable, SerializesModels; |
||
|
|||
13 | |||
14 | /** |
||
15 | * @var User |
||
16 | */ |
||
17 | public $user; |
||
18 | |||
19 | /** |
||
20 | * @var mixed |
||
21 | */ |
||
22 | private $siteEmail; |
||
23 | |||
24 | /** |
||
25 | * @var mixed |
||
26 | */ |
||
27 | private $siteTitle; |
||
28 | |||
29 | /** |
||
30 | * AccountChange constructor. |
||
31 | */ |
||
32 | public function __construct(User $user) |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * Build the message. |
||
41 | * |
||
42 | * |
||
43 | * @throws \Exception |
||
44 | */ |
||
45 | public function build(): static |
||
50 |