addCommandConfigs() 공개 메소드

Adds command configurations to the application.
또한 보기: beginCommand()
public addCommandConfigs ( array $configs ) : static
$configs array The command configurations.
리턴 static The current instance.
예제 #1
0
 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());
 }