1 | <?php |
||
8 | class RunCommand extends BaseCommand |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $signature = 'monitor:run {monitor? : Comma-delimited list of names of specific monitors to run}'; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $description = 'Run all server monitor tasks.'; |
||
19 | |||
20 | public function handle() |
||
31 | } |
||
32 |