hasCommandOptions() public method

Returns whether the builder contains any command options.
public hasCommandOptions ( boolean $includeBase = true ) : boolean
$includeBase boolean Whether to include command options in the base format in the search.
return boolean Returns `true` if the builder contains command options and `false` otherwise.
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testHasCommandOptionsFailsIfIncludeBaseNoBoolean()
 {
     $this->builder->hasCommandOptions(1234);
 }