getArguments() 공개 메소드

Returns all arguments added to the builder.
public getArguments ( boolean $includeBase = true ) : Argument[]
$includeBase boolean Whether to include arguments of the base format in the result.
리턴 Argument[] The arguments.
예제 #1
0
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testGetArgumentsFailsIfIncludeBaseNoBoolean()
 {
     $this->builder->getArguments(1234);
 }
예제 #2
0
 /**
  * Returns the configured arguments.
  *
  * Read {@link Argument} for a more detailed description of arguments.
  *
  * @return Argument[] The configured arguments.
  *
  * @see addArgument()
  */
 public function getArguments()
 {
     return $this->formatBuilder->getArguments();
 }