Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class SendAccountChangedEmail implements ShouldQueue |
||
15 | { |
||
16 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
17 | |||
18 | private User $user; |
||
19 | |||
20 | /** |
||
21 | * Create a new job instance. |
||
22 | */ |
||
23 | public function __construct(User $user) |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Execute the job. |
||
30 | */ |
||
31 | public function handle(): void |
||
36 |