From 0483ed6e0350f24df8a3c1d698b071cd4f6ebfbb Mon Sep 17 00:00:00 2001 From: Ali Zahedi Date: Wed, 15 Sep 2021 11:37:19 +0430 Subject: [PATCH] Update debug.rst The service ID should not be surrounded by a single quote. --- service_container/debug.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service_container/debug.rst b/service_container/debug.rst index 635bbdfa9ae..e949f6234f9 100644 --- a/service_container/debug.rst +++ b/service_container/debug.rst @@ -29,7 +29,7 @@ its id: .. code-block:: terminal - $ php bin/console debug:container 'App\Service\Mailer' + $ php bin/console debug:container App\Service\Mailer # to show the service arguments: - $ php bin/console debug:container 'App\Service\Mailer' --show-arguments + $ php bin/console debug:container App\Service\Mailer --show-arguments