1 | <?php namespace Indatus\Dispatcher\Commands; |
||
20 | class ScheduleSummary extends Command |
||
21 | { |
||
22 | /** @var \Indatus\Dispatcher\Services\ScheduleService|null */ |
||
23 | private $scheduleService = null; |
||
24 | |||
25 | 3 | public function __construct(ScheduleService $scheduleService) |
|
31 | |||
32 | /** |
||
33 | * The console command name. |
||
34 | * |
||
35 | * @var string |
||
36 | */ |
||
37 | protected $name = 'scheduled:summary'; |
||
38 | |||
39 | /** |
||
40 | * The console command description. |
||
41 | * |
||
42 | * @var string |
||
43 | */ |
||
44 | protected $description = 'View a summary of all scheduled artisan commands'; |
||
45 | |||
46 | /** |
||
47 | * Execute the console command. |
||
48 | * |
||
49 | * @return mixed |
||
50 | */ |
||
51 | 1 | public function fire() |
|
55 | } |
||
56 |