Total Complexity | 4 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class MakeFiles extends BaseCommand |
||
9 | { |
||
10 | /** |
||
11 | * The signature of the command. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $signature = 'make-files'; |
||
16 | |||
17 | /** |
||
18 | * The description of the command. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description = '(Re)make the files we need'; |
||
23 | |||
24 | /** |
||
25 | * Execute the console command. |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | 4 | public function handle(): void |
|
52 |