You are here

protected function FoobarCommand::configure in Zircon Profile 8

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

Configures the current command.

Overrides Command::configure

File

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

Class

FoobarCommand

Code

protected function configure() {
  $this
    ->setName('foobar:foo')
    ->setDescription('The foobar:foo command');
}