Total Complexity | 2 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class VerifyNewEmail extends Mailable implements ShouldQueue |
||
12 | { |
||
13 | use Queueable, SerializesModels; |
||
|
|||
14 | |||
15 | /** |
||
16 | * @var \Illuminate\Database\Eloquent\Model |
||
17 | */ |
||
18 | public $pendingUserEmail; |
||
19 | |||
20 | /** |
||
21 | * Create a new message instance. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | public function __construct(Model $pendingUserEmail) |
||
26 | { |
||
27 | $this->pendingUserEmail = $pendingUserEmail; |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Build the message. |
||
32 | * |
||
33 | * @return $this |
||
34 | */ |
||
35 | public function build() |
||
41 | ]); |
||
42 | } |
||
44 |