Total Complexity | 1 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | class RefreshBalance extends Command |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * The name and signature of the console command. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $signature = 'wallet:refresh'; |
||
19 | |||
20 | /** |
||
21 | * The console command description. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $description = 'Recalculates all wallets'; |
||
26 | |||
27 | /** |
||
28 | * @return void |
||
29 | */ |
||
30 | public function handle(): void |
||
53 |