| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class Check extends CheckAbstract |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @param int $warningThreshold A number between 0 and 100 |
||
| 24 | * @param int $criticalThreshold A number between 0 and 100 |
||
| 25 | * @param string $path The disk path to check, i.e. '/tmp' or 'C:' (defaults to /) |
||
| 26 | * |
||
| 27 | * @throws InvalidArgumentException |
||
| 28 | */ |
||
| 29 | 2 | public function __construct($warningThreshold, $criticalThreshold, $path = '/') |
|
| 34 |