From 5acb588b8924a7b8b630c112e85910c17fefad9c Mon Sep 17 00:00:00 2001 From: Smaine Milianni Date: Tue, 30 Oct 2018 07:56:00 +0100 Subject: [PATCH] Change app to bin . Change `app` to `bin` to be consistent with others examples. --- console/input.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console/input.rst b/console/input.rst index 2a8f034c0fc..2e27595b1cb 100644 --- a/console/input.rst +++ b/console/input.rst @@ -183,7 +183,7 @@ separation at all (e.g. ``-i 5`` or ``-i5``). 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 app/console --iterations 5 app:greet Fabien`` + command name. For example, ``php bin/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.