respect-validation/docs/OneOf.md
Henrique Moody 66027b85a5 Documentation improvements
- Add a space after comments with `//`;
- Add missing "See also" sections in some files
2015-10-19 22:55:05 -02:00

25 lines
442 B
Markdown

# OneOf
- `v::oneOf(v $v1, v $v2, v $v3...)`
This is a group validator that acts as an OR operator.
```php
v::oneOf(
v::intVal(),
v::floatVal()
)->validate(15.5); // true
```
In the sample above, `v::intVal()` doesn't validates, but
`v::floatVal()` validates, so oneOf returns true.
`v::oneOf` returns true if at least one inner validator
passes.
***
See also:
* [AllOf](AllOf.md)
* [NoneOf](NoneOf.md)
* [When](When.md)