Skip to content

Commit

Permalink
[Console] Change Command namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas committed Mar 19, 2014
1 parent e40733d commit 0816a07
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions components/console/changing_default_command.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ will always run the ``ListCommand`` when no command name is passed. In order to
the default command you just need to pass the command name you want to run by
default to the ``setDefaultCommand`` method::

namespace Acme\Command;
namespace Acme\Console\Command;

use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
Expand All @@ -36,7 +36,7 @@ Executing the application and changing the default Command::

// application.php

use Acme\Command\HelloWorldCommand;
use Acme\Console\Command\HelloWorldCommand;
use Symfony\Component\Console\Application;

$command = new HelloWorldCommand();
Expand Down
8 changes: 4 additions & 4 deletions components/console/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -88,7 +88,7 @@ an ``Application`` and adds commands to it::
<?php
// application.php

use Acme\Command\GreetCommand;
use Acme\Console\Command\GreetCommand;
use Symfony\Component\Console\Application;

$application = new Application();
Expand Down Expand Up @@ -415,7 +415,7 @@ useful one is the :class:`Symfony\\Component\\Console\\Tester\\CommandTester`
class. It uses special input and output classes to ease testing without a real
console::

use Acme\Command\GreetCommand;
use Acme\Console\Command\GreetCommand;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;

Expand Down Expand Up @@ -444,7 +444,7 @@ You can test sending arguments and options to the command by passing them
as an array to the :method:`Symfony\\Component\\Console\\Tester\\CommandTester::execute`
method::

use Acme\Command\GreetCommand;
use Acme\Console\Command\GreetCommand;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;

Expand Down

0 comments on commit 0816a07

Please sign in to comment.