Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class Unproxy extends BaseCommand |
||
10 | { |
||
11 | /** |
||
12 | * The signature of the command. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'valet:unproxy {site?} {--all}'; |
||
17 | |||
18 | /** |
||
19 | * The description of the command. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Manually remove a Valet proxy for a site'; |
||
24 | |||
25 | /** |
||
26 | * Execute the console command. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | 2 | public function handle(): void |
|
41 |