Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class TmuxUIStart extends Command |
||
11 | { |
||
12 | /** |
||
13 | * The name and signature of the console command. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $signature = 'tmux-ui:start'; |
||
18 | |||
19 | /** |
||
20 | * The console command description. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $description = 'Start the processing of tmux scripts.'; |
||
25 | |||
26 | /** |
||
27 | * Execute the console command. |
||
28 | */ |
||
29 | public function handle(): void |
||
48 |
In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.