respect-validation/docs/NoneOf.md
2015-10-07 11:46:57 -03:00

345 B

NoneOf

  • v::noneOf(v $v1, v $v2, v $v3...)

Validates if NONE of the given validators validate:

v::noneOf(
    v::intVal(),
    v::floatVal()
)->validate('foo'); //true

In the sample above, 'foo' isn't a integer nor a float, so noneOf returns true.


See also: