You are here

protected function Foo3Command::configure in Zircon Profile 8

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

Configures the current command.

Overrides Command::configure

File

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

Class

Foo3Command

Code

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