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);
 }