hasRequiredArgument() public method

Returns whether the builder contains a required argument.
public hasRequiredArgument ( boolean $includeBase = true ) : boolean
$includeBase boolean Whether to include arguments in the base format in the search.
return boolean Returns `true` if the builder contains a required argument and `false` otherwise.
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testHasRequiredArgumentFailsIfIncludeBaseNoBoolean()
 {
     $this->builder->hasRequiredArgument(1234);
 }