hasMultiValuedArgument() публичный Метод

Returns whether the builder contains a multi-valued argument.
public hasMultiValuedArgument ( boolean $includeBase = true ) : boolean
$includeBase boolean Whether to include arguments in the base format in the search.
Результат boolean Returns `true` if the builder contains a multi-valued argument and `false` otherwise.
Пример #1
0
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testHasMultiValuedArgumentFailsIfIncludeBaseNoBoolean()
 {
     $this->builder->hasMultiValuedArgument(1234);
 }