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