From 4fd7022fa66780a6e39042d27a3caab6051abe7f Mon Sep 17 00:00:00 2001 From: Daniel Gomes Date: Thu, 9 Jan 2014 17:08:10 +0000 Subject: [PATCH] Removed code references to Symfony Standard Distribution --- components/console/introduction.rst | 29 ++++++------- components/console/single_command_tool.rst | 1 + components/console/usage.rst | 48 +++++++++++----------- 3 files changed, 40 insertions(+), 38 deletions(-) diff --git a/components/console/introduction.rst b/components/console/introduction.rst index 961b83d33be..0bd13d47098 100644 --- a/components/console/introduction.rst +++ b/components/console/introduction.rst @@ -35,7 +35,7 @@ Creating a basic Command To make a console command that greets you from the command line, create ``GreetCommand.php`` and add the following to it:: - namespace Acme\DemoBundle\Command; + namespace Acme\Command; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; @@ -86,9 +86,9 @@ an ``Application`` and adds commands to it:: #!/usr/bin/env php