You are here

protected function FooSubnamespaced2Command::configure in Zircon Profile 8.0

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

Configures the current command.

Overrides Command::configure

File

vendor/symfony/console/Tests/Fixtures/FooSubnamespaced2Command.php, line 12

Class

FooSubnamespaced2Command

Code

protected function configure() {
  $this
    ->setName('foo:go:bret')
    ->setDescription('The foo:bar:go command')
    ->setAliases(array(
    'foobargo',
  ));
}