Total Complexity | 3 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class Update extends SingleProductCommand |
||
11 | { |
||
12 | /** |
||
13 | * The name and signature of the console command. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $signature = 'docweaver:update |
||
18 | {product? : Product name} |
||
19 | {--y|y : Whether to skip confirmation} |
||
20 | '; |
||
21 | |||
22 | /** |
||
23 | * The console command description. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $description = 'Update documentation for product'; |
||
28 | |||
29 | /** |
||
30 | * Execute the console command. |
||
31 | */ |
||
32 | public function handle(): void |
||
55 |