Webmozart\Console\Api\Args\Format\ArgsFormatBuilder::getCommandNames PHP 메소드

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.
    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

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