From 762e1cb0c09242c557212c881ca7a05125a346c3 Mon Sep 17 00:00:00 2001 From: Rafael Torres Date: Thu, 23 Nov 2017 12:03:31 +1300 Subject: [PATCH] Correction in the console command folder replaced bin/console with app/console command as per Symfony 2.7 folder structure --- service_container.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service_container.rst b/service_container.rst index 691a04652bb..4e801ec53f5 100644 --- a/service_container.rst +++ b/service_container.rst @@ -60,7 +60,7 @@ Find out by running: .. code-block:: terminal - $ php bin/console debug:container + $ php app/console debug:container This is just a *small* sample of the output: @@ -222,7 +222,7 @@ and set it on a ``$logger`` property:: The ``LoggerInterface`` type-hint in the ``__construct()`` method is optional, but a good idea. You can find the correct type-hint by reading the docs for the - service or by using the ``php bin/console debug:container`` console command. + service or by using the ``php app/console debug:container`` console command. Next, tell the container the service has a constructor argument: