| Total Complexity | 4 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Cache extends BaseCheck implements HealthCheckInterface |
||
| 12 | { |
||
| 13 | |||
| 14 | const DEFAULT_KEY = 'health-check'; |
||
| 15 | |||
| 16 | const DEFAULT_VALUE = 'health-check-value'; |
||
| 17 | |||
| 18 | const DEFAULT_MINUTES = 1; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * |
||
| 22 | * {@inheritdoc} |
||
| 23 | * @see \Health\Checks\HealthCheckInterface::call() |
||
| 24 | */ |
||
| 25 | public function call() |
||
| 54 |