From a9b25c7ca3f0f2cb4c31e9a91b64bc1cd28cc1a9 Mon Sep 17 00:00:00 2001 From: Romain Biard Date: Mon, 19 Feb 2018 07:35:12 -0300 Subject: [PATCH] Use the proper path of version 2.x This doc used the path added as of version 3.x. In version 2.x, it has to be app/foo for the commands. --- reference/configuration/framework.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/configuration/framework.rst b/reference/configuration/framework.rst index a85399b0ada..68147f0cc14 100644 --- a/reference/configuration/framework.rst +++ b/reference/configuration/framework.rst @@ -11,10 +11,10 @@ configured under the ``framework`` key in your application configuration. .. code-block:: terminal # displays the default config values defined by Symfony - $ php bin/console config:dump framework + $ php app/console config:dump framework # displays the actual config values used by your application - $ php bin/console debug:config framework + $ php app/console debug:config framework .. note::