getFormat() public method

Returns the format of the console arguments.
public getFormat ( ) : ArgsFormat
return Webmozart\Console\Api\Args\Format\ArgsFormat The format.
Exemplo n.º 1
0
 public function testGetFormat()
 {
     $format = new ArgsFormat();
     $args = new Args($format);
     $this->assertSame($format, $args->getFormat());
 }