You are here

protected function FooSubnamespaced1Command::configure in Zircon Profile 8

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

Configures the current command.

Overrides Command::configure

File

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

Class

FooSubnamespaced1Command

Code

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