You are here

protected function Foo2Command::configure in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Tests/Fixtures/Foo2Command.php \Foo2Command::configure()

Configures the current command.

Overrides Command::configure

File

vendor/symfony/console/Tests/Fixtures/Foo2Command.php, line 9

Class

Foo2Command

Code

protected function configure() {
  $this
    ->setName('foo1:bar')
    ->setDescription('The foo1:bar command')
    ->setAliases(array(
    'afoobar2',
  ));
}