1 | <?php |
||
13 | class ParseReportsCommand extends Command |
||
14 | { |
||
15 | /** |
||
16 | * The name and signature of the console command. |
||
17 | * |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $signature = 'reports:parse'; |
||
21 | |||
22 | /** |
||
23 | * The console command description. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $description = 'Search reports which status is "process"'; |
||
28 | /** |
||
29 | * Execute the console command. |
||
30 | * |
||
31 | * @return mixed |
||
32 | */ |
||
33 | 2 | public function handle() : void |
|
48 | } |