AllOf(Validatable ...$rule)
Will validate if all inner validators validates.
v::allOf(v::intVal(), v::positive())->validate(15); // true
See also: