Nullable(Validatable $rule)
Validates the given input with a defined rule when input is not NULL.
v::nullable(v::email())->isValid(null); // true
v::nullable(v::email())->isValid('[email protected]'); // true
v::nullable(v::email())->isValid('not an email'); // false
- Nesting
Version | Description |
---|---|
2.0.0 | Created |
See also: