getCommandConfig() 공개 메소드

Returns the command configuration for a given name.
또한 보기: beginCommand()
public getCommandConfig ( string $name ) : CommandConfig
$name string The name of the command.
리턴 CommandConfig The command configuration.
예제 #1
0
 /**
  * @expectedException \Webmozart\Console\Api\Command\NoSuchCommandException
  */
 public function testGetCommandConfigFailsIfCommandNotFound()
 {
     $this->config->getCommandConfig('command');
 }