Total Complexity | 4 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 70% |
Changes | 0 |
1 | <?php |
||
8 | class LiveCommand extends AbstractCommand |
||
9 | { |
||
10 | /** |
||
11 | * The signature of the command. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $signature = 'live {team?}'; |
||
16 | |||
17 | /** |
||
18 | * The description of the command. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description = 'Show the current live games'; |
||
23 | |||
24 | /** |
||
25 | * Execute the console command. |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | 3 | public function handle(): void |
|
48 |