Total Complexity | 3 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
9 | class Open extends BaseCommand |
||
10 | { |
||
11 | /** |
||
12 | * The signature of the command. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'php:open {run?} {--p|php-version=}'; |
||
17 | |||
18 | /** |
||
19 | * The description of the command. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'Open PHP cli'; |
||
24 | |||
25 | /** |
||
26 | * Execute the console command. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | public function handle(): void |
||
48 |