| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 45 | public function handle() |
||
| 46 | { |
||
| 47 | $logs = []; |
||
| 48 | |||
| 49 | $logs['signature'] = $this->signature; |
||
| 50 | $logs['cpu'] = $this->cpu->check(); |
||
| 51 | $logs['memory'] = $this->memory->check(); |
||
| 52 | $logs['network'] = $this->network->check(); |
||
| 53 | $logs['storage'] = $this->storage->check(); |
||
| 54 | $logs['webServer'] = $this->webServer->check(); |
||
| 55 | |||
| 56 | TroubleOccurred::dispatch($logs); |
||
| 57 | } |
||
| 59 |