1 | <?php |
||
11 | class DiskSpaceHealthIndicator extends AbstractHealthIndicator |
||
12 | { |
||
13 | /** |
||
14 | * @var DiskSpaceHealthIndicatorProperties |
||
15 | */ |
||
16 | private $properties; |
||
17 | |||
18 | /** |
||
19 | * Create a new DiskSpaceHealthIndicator. |
||
20 | * |
||
21 | * @param DiskSpaceHealthIndicatorProperties $properties |
||
22 | */ |
||
23 | public function __construct(DiskSpaceHealthIndicatorProperties $properties = null) |
||
31 | 9 | ||
32 | 9 | /** |
|
33 | * Actual health check logic. |
||
34 | * |
||
35 | * @param HealthBuilder $builder |
||
36 | * |
||
37 | * @throws \Exception any Exception that should create a Status::DOWN |
||
38 | * system status. |
||
39 | */ |
||
40 | protected function doHealthCheck(HealthBuilder $builder) |
||
53 | } |
||
54 |