| 1 | <?php |
||
| 19 | class BoolVal |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Checks if the passed value is false |
||
| 23 | * |
||
| 24 | * @param mixed $input |
||
| 25 | * |
||
| 26 | * @return bool |
||
| 27 | */ |
||
| 28 | 1 | final public static function isFalse($input): bool |
|
| 40 | |||
| 41 | /** |
||
| 42 | * Checks if the passed value is true |
||
| 43 | * |
||
| 44 | * @param mixed $input |
||
| 45 | * |
||
| 46 | * @return bool |
||
| 47 | */ |
||
| 48 | 1 | final public static function isTrue($input): bool |
|
| 60 | } |
||
| 61 |