Browse Source

[Validator] Fixed example in README file (fixes #4088)

Joseph Bielawski 13 năm trước cách đây
mục cha
commit
fde94caad8

+ 5 - 4
src/Symfony/Component/Validator/README.md

@@ -8,6 +8,7 @@ annotations, which can then be checked against instances of these classes.
     use Symfony\Component\Validator\Validator;
     use Symfony\Component\Validator\Validator;
     use Symfony\Component\Validator\Mapping\ClassMetadataFactory;
     use Symfony\Component\Validator\Mapping\ClassMetadataFactory;
     use Symfony\Component\Validator\Mapping\Loader\StaticMethodLoader;
     use Symfony\Component\Validator\Mapping\Loader\StaticMethodLoader;
+    use Symfony\Component\Validator\Constraints as Assert;
     use Symfony\Component\Validator\ConstraintValidatorFactory;
     use Symfony\Component\Validator\ConstraintValidatorFactory;
 
 
     $validator = new Validator(
     $validator = new Validator(
@@ -20,10 +21,10 @@ annotations, which can then be checked against instances of these classes.
             'first_name' => new Assert\MinLength(101),
             'first_name' => new Assert\MinLength(101),
             'last_name'  => new Assert\MinLength(1),
             'last_name'  => new Assert\MinLength(1),
         )),
         )),
-        'email' => new Assert\Email(),
-        'simple' => new Assert\MinLength(102),
-        'gender' => new Assert\Choice(array(3, 4)),
-        'file' => new Assert\File(),
+        'email'    => new Assert\Email(),
+        'simple'   => new Assert\MinLength(102),
+        'gender'   => new Assert\Choice(array(3, 4)),
+        'file'     => new Assert\File(),
         'password' => new Assert\MinLength(60),
         'password' => new Assert\MinLength(60),
     ));
     ));