getCommandOptions() 공개 메소드

Returns all command options added to the builder.
public getCommandOptions ( boolean $includeBase = true ) : CommandOption[]
$includeBase boolean Whether to include command options of the base format in the result.
리턴 CommandOption[] The command options.
예제 #1
0
 /**
  * @expectedException \InvalidArgumentException
  */
 public function testGetCommandOptionsFailsIfIncludeBaseNoBoolean()
 {
     $this->builder->getCommandOptions(1234);
 }