From 9f7fda42b5e4021cbad14e7a4adcf52c152167d8 Mon Sep 17 00:00:00 2001 From: Nitaco Date: Tue, 11 Nov 2014 08:34:40 +0100 Subject: [PATCH] Updated first code-block:: bash The command for executing an console command was wrong. The php command was missing. It will help further readers. --- cookbook/console/console_command.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/console/console_command.rst b/cookbook/console/console_command.rst index ccd5065d769..4a2ea5cafb2 100644 --- a/cookbook/console/console_command.rst +++ b/cookbook/console/console_command.rst @@ -59,7 +59,7 @@ This command will now automatically be available to run: .. code-block:: bash - $ app/console demo:greet Fabien + $ php app/console demo:greet Fabien Getting Services from the Service Container -------------------------------------------