protected function Foo2Command::configure in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Tests/Fixtures/Foo2Command.php \Foo2Command::configure()
Configures the current command.
Overrides Command::configure
File
- vendor/
symfony/ console/ Tests/ Fixtures/ Foo2Command.php, line 9
Class
Code
protected function configure() {
$this
->setName('foo1:bar')
->setDescription('The foo1:bar command')
->setAliases(array(
'afoobar2',
));
}