getCommandNames() 공개 메소드

Returns all command names added to the builder.
public getCommandNames ( boolean $includeBase = true ) : CommandName[]
$includeBase boolean Whether to include command names of the base format in the result.
리턴 CommandName[] The command names.
예제 #1
0
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testGetCommandNamesFailsIfIncludeBaseNoBoolean()
 {
     $this->builder->getCommandNames(1234);
 }