Total Complexity | 4 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | class UseSet extends BaseCommand |
||
11 | { |
||
12 | /** |
||
13 | * The signature of the command. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $signature = 'images:set {--show}'; |
||
18 | |||
19 | /** |
||
20 | * The description of the command. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $description = 'Change the set of container images use'; |
||
25 | |||
26 | /** |
||
27 | * Execute the console command. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function handle(): void |
||
61 |