mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 23:59:51 +01:00
14 lines
219 B
Markdown
14 lines
219 B
Markdown
# NullValue
|
|
|
|
- `v::nullValue()`
|
|
|
|
Validates if the input is null. This rule does not allow empty strings to avoid ambiguity.
|
|
|
|
```php
|
|
v::nullValue()->validate(null); //true
|
|
```
|
|
|
|
***
|
|
See also:
|
|
|
|
* [NotEmpty](NotEmpty.md)
|