respect-validation/docs/Each.md
Henrique Moody 0338e18e83
Rename rule "Date" to "DateTime"
Also change rules to use `DateTimeInterface` and `DateTimeImmutable`
when possible.
2017-05-01 13:16:59 +02:00

723 B

Each

  • Each(Validatable $ruleForValue)
  • Each(null, Validatable $ruleForKey)
  • Each(Validatable $ruleForValue, Validatable $ruleForKey)

Iterates over an array or Iterator and validates the value or key of each entry:

$releaseDates = [
    'validation' => '2010-01-01',
    'template'   => '2011-01-01',
    'relational' => '2011-02-05',
];

v::arrayVal()->each(v::dateTime())->validate($releaseDates); // true
v::arrayVal()->each(v::dateTime(), v::stringType()->lowercase())->validate($releaseDates); // true

Using arrayVal() before each() is a best practice.

Changelog

Version Description
0.3.9 Created

See also: