respect-validation/docs/rules/NoneOf.md
Henrique Moody 2610a380dc
Replace "LazyConsecutive" with "Consecutive"
With this and the Lazy rule, the LazyConsecutive lost its purpose.

While working on it, I did refactor the Domain rule a bit, but mainly to
check how this rule could behave.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2024-03-06 23:57:49 +01:00

615 B

NoneOf

  • NoneOf(Validatable $rule1, Validatable $rule2, Validatable ...$rule)

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.

Categorization

  • Composite
  • Nesting

Changelog

Version Description
3.0.0 Require at least two rules to be passed
0.3.9 Created

See also: