Webmozart\Console\Adapter\ArgsInput::getArgs PHP Method

getArgs() public method

public getArgs ( ) : Args
return Webmozart\Console\Api\Args\Args
    public function getArgs()
    {
        return $this->args;
    }

Usage Example

Exemplo n.º 1
0
 public function testCreateNoArgs()
 {
     $input = new ArgsInput($this->rawArgs);
     $this->assertSame($this->rawArgs, $input->getRawArgs());
     $this->assertNull($input->getArgs());
 }