this repo has no description
1<?php
2
3namespace App\Jobs;
4
5use App\Models\Account;
6use Illuminate\Contracts\Queue\ShouldQueue;
7use Illuminate\Foundation\Queue\Queueable;
8
9class ImportTransactionsForAccount implements ShouldQueue
10{
11 use Queueable;
12
13 /**
14 * Create a new job instance.
15 */
16 public function __construct(public Account $account)
17 {
18 }
19
20 /**
21 * Execute the job.
22 */
23 public function handle(): void
24 {
25 //
26 }
27}