From a15e982c29c49ef1251498b1d5033c8f48bc6181 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Fri, 9 Mar 2018 09:30:48 +0100 Subject: [PATCH] Fixed the console path in Symfony 2.7 --- console/input.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/input.rst b/console/input.rst index 423ff143aa8..1a0f3dc22a9 100644 --- a/console/input.rst +++ b/console/input.rst @@ -225,7 +225,7 @@ You can combine ``VALUE_IS_ARRAY`` with ``VALUE_REQUIRED`` or While it is possible to separate an option from its value with a white space, using this form leads to an ambiguity should the option appear before the - command name. For example, ``php bin/console --iterations 5 app:greet Fabien`` + command name. For example, ``php app/console --iterations 5 app:greet Fabien`` is ambiguous; Symfony would interpret ``5`` as the command name. To avoid this situation, always place options after the command name, or avoid using a space to separate the option name from its value.