Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
13 | class LiveCommand extends Command |
||
14 | { |
||
15 | /** |
||
16 | * The signature of the command. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $signature = 'live {team?}'; |
||
21 | |||
22 | /** |
||
23 | * The description of the command. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $description = 'Show the current live games'; |
||
28 | |||
29 | /** |
||
30 | * Execute the console command. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function handle(): void |
||
51 |