Fix missing change from arr() to arrayVal()

This commit is contained in:
Ruben Vermeersch 2016-04-06 10:08:40 +02:00
parent f3ad53dd14
commit 7a907e6795

View file

@ -18,7 +18,7 @@ v::arrayVal()->each(v::date())->validate($releaseDates); // true
v::arrayVal()->each(v::date(), v::stringType()->lowercase())->validate($releaseDates); // true
```
Using `arr()` before `each()` is a best practice.
Using `arrayVal()` before `each()` is a best practice.
***
See also: