diff --git a/validation.rst b/validation.rst
index fd18f003d56..de6cfb755a3 100644
--- a/validation.rst
+++ b/validation.rst
@@ -207,77 +207,7 @@ Inside the template, you can output the list of errors exactly as needed:
Configuration
-------------
-Before using the Symfony validator, make sure it's enabled in the main config
-file:
-
-.. configuration-block::
-
- .. code-block:: yaml
-
- # config/packages/framework.yaml
- framework:
- validation: { enabled: true }
-
- .. code-block:: xml
-
-
-
-
-
-
-
-
-
-
- .. code-block:: php
-
- // config/packages/framework.php
- $container->loadFromExtension('framework', [
- 'validation' => [
- 'enabled' => true,
- ],
- ]);
-
-Besides, if you plan to use annotations to configure validation, replace the
-previous configuration by the following:
-
-.. configuration-block::
-
- .. code-block:: yaml
-
- # config/packages/framework.yaml
- framework:
- validation: { enable_annotations: true }
-
- .. code-block:: xml
-
-
-
-
-
-
-
-
-
-
- .. code-block:: php
-
- // config/packages/framework.php
- $container->loadFromExtension('framework', [
- 'validation' => [
- 'enable_annotations' => true,
- ],
- ]);
+In the previous Symfony versions, enabling the validator in configuration was a requirement. It's not the case anymore, the validation is enabled by default as long as the Validator component is installed. In the same way, annotations are enabled by default if ``doctrine/annotations`` is installed.
.. tip::