Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function handle() |
||
18 | { |
||
19 | $this->line(''); |
||
20 | |||
21 | if (! MonitorRepository::getAllEnabledMonitors()->count()) { |
||
22 | $this->warn('There are no monitors created or enabled.'); |
||
23 | $this->info('You create a monitor using the `monitor:create` command'); |
||
24 | } |
||
25 | |||
26 | UncheckedMonitors::display(); |
||
27 | FailedMonitors::display(); |
||
28 | MonitorsReportingSslProblems::display(); |
||
29 | HealthyMonitors::display(); |
||
30 | } |
||
31 | } |
||
32 |