mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 23:59:51 +01:00
The `{{name}}` placeholder could represent different things depending on
the state of the Result, and referring to it as `{{name}}` seems
arbitrary. This commit changes it to `{{subject}}`, which is much more
generic and it describes well what that placeholder can mean.
48 lines
1.2 KiB
Markdown
48 lines
1.2 KiB
Markdown
# FalseVal
|
|
|
|
- `FalseVal()`
|
|
|
|
Validates if a value is considered as `false`.
|
|
|
|
```php
|
|
v::falseVal()->isValid(false); // true
|
|
v::falseVal()->isValid(0); // true
|
|
v::falseVal()->isValid('0'); // true
|
|
v::falseVal()->isValid('false'); // true
|
|
v::falseVal()->isValid('off'); // true
|
|
v::falseVal()->isValid('no'); // true
|
|
v::falseVal()->isValid('0.5'); // false
|
|
v::falseVal()->isValid('2'); // false
|
|
```
|
|
|
|
## Templates
|
|
|
|
### `FalseVal::TEMPLATE_STANDARD`
|
|
|
|
| Mode | Template |
|
|
| ---------- | ---------------------------------------- |
|
|
| `default` | {{subject}} must evaluate to `false` |
|
|
| `inverted` | {{subject}} must not evaluate to `false` |
|
|
|
|
## Template placeholders
|
|
|
|
| Placeholder | Description |
|
|
| ----------- | ---------------------------------------------------------------- |
|
|
| `subject` | The validated input or the custom validator name (if specified). |
|
|
|
|
## Categorization
|
|
|
|
- Booleans
|
|
|
|
## Changelog
|
|
|
|
| Version | Description |
|
|
| ------: | ---------------------------------- |
|
|
| 1.0.0 | Renamed from `False` to `FalseVal` |
|
|
| 0.8.0 | Created as `False` |
|
|
|
|
---
|
|
|
|
See also:
|
|
|
|
- [TrueVal](TrueVal.md)
|