You are here

protected function TestCommand::configure in Zircon Profile 8

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

Configures the current command.

Overrides Command::configure

File

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

Class

TestCommand

Code

protected function configure() {
  $this
    ->setName('namespace:name')
    ->setAliases(array(
    'name',
  ))
    ->setDescription('description')
    ->setHelp('help');
}