You are here

protected function Foo1Command::configure in Zircon Profile 8

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

Configures the current command.

Overrides Command::configure

File

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

Class

Foo1Command

Code

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