| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public function fromHealth(HealthReport $health): HealthCheck |
||
| 20 | { |
||
| 21 | /** @var DependencyStatus[] $dependencies */ |
||
| 22 | $dependencies = $health->dependencies(); |
||
| 23 | |||
| 24 | if ($health->isHealthy()) { |
||
| 25 | return $this->createHealthy(...$dependencies); |
||
| 26 | } |
||
| 27 | |||
| 28 | return $this->createUnhealthy(...$dependencies); |
||
| 29 | } |
||
| 49 |