From 5d99d881411224e28849609e39e30a7766d11367 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Thu, 20 Mar 2014 09:47:12 -0500 Subject: [PATCH] [#3697] Backporting 2.3-specific changes --- components/console/introduction.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/console/introduction.rst b/components/console/introduction.rst index 249121258a9..cffbfabaddf 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\Command; + namespace Acme\Console\Command; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; @@ -88,7 +88,7 @@ an ``Application`` and adds commands to it::