From f663d4869e456fbf74ef05ff853664e02761aef8 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 8 Oct 2018 17:52:39 +0200 Subject: [PATCH] fix the command output --- service_container.rst | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/service_container.rst b/service_container.rst index 115b0e44ab2..f5eb6862f42 100644 --- a/service_container.rst +++ b/service_container.rst @@ -63,22 +63,22 @@ Find out by running: $ php app/console debug:container # this is just a *small* sample of the output... - =============================== ======================================================================= + =============================== ================================================================== Service ID Class name - =============================== ======================================================================= - doctrine ``Doctrine\Bundle\DoctrineBundle\Registry`` - filesystem ``Symfony\Component\Filesystem\Filesystem`` - form.factory ``Symfony\Component\Form\FormFactory`` - logger ``Symfony\Bridge\Monolog\Logger`` - request_stack ``Symfony\Component\HttpFoundation\RequestStack`` - router ``Symfony\Bundle\FrameworkBundle\Routing\Router`` - security.authorization_checker ``Symfony\Component\Security\Core\Authorization\AuthorizationChecker`` - security.password_encoder ``Symfony\Component\Security\Core\Encoder\UserPasswordEncoder`` - session ``Symfony\Component\HttpFoundation\Session\Session`` - translator ``Symfony\Component\Translation\DataCollectorTranslator`` - twig ``Twig\Environment`` - validator ``Symfony\Component\Validator\Validator\ValidatorInterface`` - =============================== ======================================================================= + =============================== ================================================================== + doctrine Doctrine\Bundle\DoctrineBundle\Registry + filesystem Symfony\Component\Filesystem\Filesystem + form.factory Symfony\Component\Form\FormFactory + logger Symfony\Bridge\Monolog\Logger + request_stack Symfony\Component\HttpFoundation\RequestStack + router Symfony\Bundle\FrameworkBundle\Routing\Router + security.authorization_checker Symfony\Component\Security\Core\Authorization\AuthorizationChecker + security.password_encoder Symfony\Component\Security\Core\Encoder\UserPasswordEncoder + session Symfony\Component\HttpFoundation\Session\Session + translator Symfony\Component\Translation\DataCollectorTranslator + twig Twig\Environment + validator Symfony\Component\Validator\Validator\ValidatorInterface + =============================== ================================================================== Throughout the docs, you'll see how to use the many different services that live in the container.