Webmozart\Console\Api\Args\Format\ArgsFormatBuilder::getCommandNames PHP Method

getCommandNames() public method

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.
return CommandName[] The command names.
    public function getCommandNames($includeBase = true)
    {
        Assert::boolean($includeBase, 'The parameter $includeBase must be a boolean. Got: %s');
        $commandNames = $this->commandNames;
        if ($includeBase && $this->baseFormat) {
            $commandNames = array_merge($this->baseFormat->getCommandNames(), $commandNames);
        }
        return $commandNames;
    }

Usage Example

 /**
  * @expectedException \InvalidArgumentException
  */
 public function testGetCommandNamesFailsIfIncludeBaseNoBoolean()
 {
     $this->builder->getCommandNames(1234);
 }