From ff7c62a6e21b7774afc780b648fb32e8021a6d2e Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Mon, 27 Feb 2017 12:42:42 +0100 Subject: [PATCH] Minor improvement for the default console command article --- components/console/changing_default_command.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/components/console/changing_default_command.rst b/components/console/changing_default_command.rst index 2ce1f04a8a6..29534ba7d23 100644 --- a/components/console/changing_default_command.rst +++ b/components/console/changing_default_command.rst @@ -28,7 +28,7 @@ name to the ``setDefaultCommand()`` method:: } } -Executing the application and changing the default Command:: +Executing the application and changing the default command:: // application.php @@ -53,9 +53,10 @@ This will print the following to the command line: Hello World -.. tip:: +.. caution:: - This feature has a limitation: you cannot use it with any Command arguments. + This feature has a limitation: you cannot pass any argument or option to + the default command because they are ignored. Learn More! -----------