hasCommandNames() public method

Returns whether the builder contains any command names.
public hasCommandNames ( boolean $includeBase = true ) : boolean
$includeBase boolean Whether to consider command names of the base format.
return boolean Returns `true` if the builder contains any command names and `false` otherwise.
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testHasCommandNamesFailsIfIncludeBaseNoBoolean()
 {
     $this->builder->hasCommandNames(1234);
 }