Fix coding standard of code in the "Feature guide"

This commit is contained in:
bagus erlang 2019-02-04 10:20:24 +08:00 committed by Henrique Moody
parent a009286ba6
commit 120d924d8d
No known key found for this signature in database
GPG key ID: 221E9281655813A6

View file

@ -41,7 +41,7 @@ $user->birthdate = '1987-07-01';
Is possible to validate its attributes in a single chain:
```php
$userValidator = v::attribute('name', v::stringType()->length(1,32))
$userValidator = v::attribute('name', v::stringType()->length(1, 32))
->attribute('birthdate', v::date()->age(18));
$userValidator->validate($user); // true