addCommandConfigs() public méthode

Adds command configurations to the application.
See also: beginCommand()
public addCommandConfigs ( array $configs ) : static
$configs array The command configurations.
Résultat static The current instance.
 public function testAddCommandConfigs()
 {
     $this->config->addCommandConfig($config1 = new CommandConfig('command1'));
     $this->config->addCommandConfigs(array($config2 = new CommandConfig('command2'), $config3 = new CommandConfig('command3')));
     $this->assertSame(array($config1, $config2, $config3), $this->config->getCommandConfigs());
 }