protected function FooSubnamespaced1Command::configure in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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
Code
protected function configure() {
$this
->setName('foo:bar:baz')
->setDescription('The foo:bar:baz command')
->setAliases(array(
'foobarbaz',
));
}