| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function handle() |
||
| 19 | { |
||
| 20 | $this->line(''); |
||
| 21 | |||
| 22 | if (! MonitorRepository::getEnabled()->count()) { |
||
| 23 | $this->warn('There are no monitors created or enabled.'); |
||
| 24 | $this->info('You create a monitor using the `monitor:create {url}` command'); |
||
| 25 | } |
||
| 26 | |||
| 27 | Unchecked::display(); |
||
| 28 | Disabled::display(); |
||
| 29 | UptimeCheckFailed::display(); |
||
| 30 | CertificateCheckFailed::display(); |
||
| 31 | Healthy::display(); |
||
| 32 | } |
||
| 33 | } |
||
| 34 |