respect-validation/docs/rules/AllOf.md
Henrique Moody a009286ba6
Update "See also" section in the rules's documentation
Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2018-12-11 13:19:52 +01:00

337 B

AllOf

  • AllOf(Validatable ...$rule)

Will validate if all inner validators validates.

v::allOf(v::intVal(), v::positive())->validate(15); // true

Changelog

Version Description
0.3.9 Created

See also: