diff --git a/controller/argument_value_resolver.rst b/controller/argument_value_resolver.rst index 202497ebea8..2772626e91f 100644 --- a/controller/argument_value_resolver.rst +++ b/controller/argument_value_resolver.rst @@ -164,12 +164,12 @@ and adding a priority. - + diff --git a/controller/error_pages.rst b/controller/error_pages.rst index de0711eb414..30271a46de7 100644 --- a/controller/error_pages.rst +++ b/controller/error_pages.rst @@ -291,7 +291,7 @@ In that case, you might want to override one or both of the ``showAction()`` and - + diff --git a/controller/upload_file.rst b/controller/upload_file.rst index 28285ccad99..0059fbff8cb 100644 --- a/controller/upload_file.rst +++ b/controller/upload_file.rst @@ -396,7 +396,7 @@ Now, register this class as a Doctrine listener: http://symfony.com/schema/dic/services/services-1.0.xsd"> - + diff --git a/profiler/data_collector.rst b/profiler/data_collector.rst index 42b4d1ccbf8..e52e5314237 100644 --- a/profiler/data_collector.rst +++ b/profiler/data_collector.rst @@ -251,10 +251,10 @@ to specify a tag that contains the template: + /> diff --git a/security/api_key_authentication.rst b/security/api_key_authentication.rst index 680b1673110..fe7a656bfd0 100644 --- a/security/api_key_authentication.rst +++ b/security/api_key_authentication.rst @@ -444,7 +444,6 @@ configuration or set it to ``false``: diff --git a/service_container/configurators.rst b/service_container/configurators.rst index d783e8b7686..ee906b86856 100644 --- a/service_container/configurators.rst +++ b/service_container/configurators.rst @@ -151,7 +151,7 @@ all the classes are already loaded as services. All you need to do is specify th http://symfony.com/schema/dic/services/services-1.0.xsd"> - + diff --git a/service_container/expression_language.rst b/service_container/expression_language.rst index f61fb910653..86dc3195144 100644 --- a/service_container/expression_language.rst +++ b/service_container/expression_language.rst @@ -24,11 +24,11 @@ to another service: ``AppBundle\Mailer``. One way to do this is with an expressi # app/config/config.yml services: # ... - + AppBundle\Mail\MailerConfiguration: ~ - + AppBundle\Mailer: - arguments: ["@=service('AppBundle\Mail\MailerConfiguration').getMailerMethod()"] + arguments: ["@=service('AppBundle\\Mail\\MailerConfiguration').getMailerMethod()"] .. code-block:: xml @@ -56,7 +56,7 @@ to another service: ``AppBundle\Mailer``. One way to do this is with an expressi use AppBundle\Mail\MailerConfiguration; use AppBundle\Mailer; use Symfony\Component\ExpressionLanguage\Expression; - + $container->autowire(AppBundle\Mail\MailerConfiguration::class); $container->autowire(Mailer::class)