File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ If you have lots of validation errors, you can filter them by error code::
69
69
Retrieving a Validator Instance
70
70
-------------------------------
71
71
72
- The :class: `Symfony\\ Component\\ Validator\\ Validator ` class is the main access
73
- point of the Validator component. To create a new instance of this class , it's
72
+ The Validator object (that implements :class: `Symfony\\ Component\\ Validator\\ Validator\\ ValidatorInterface `) is the main access
73
+ point of the Validator component. To create a new instance of it , it's
74
74
recommended to use the :class: `Symfony\\ Component\\ Validator\\ Validation ` class::
75
75
76
76
use Symfony\Component\Validator\Validation;
@@ -79,7 +79,7 @@ recommended to use the :class:`Symfony\\Component\\Validator\\Validation` class:
79
79
80
80
This ``$validator `` object can validate simple variables such as strings, numbers
81
81
and arrays, but it can't validate objects. To do so, configure the
82
- ``Validator `` class as explained in the next sections.
82
+ ``Validator `` as explained in the next sections.
83
83
84
84
Learn More
85
85
----------
You can’t perform that action at this time.
0 commit comments