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

__construct() public method

Creates the adapter.
public __construct ( Webmozart\Console\Api\Args\RawArgs $rawArgs, Args $args = null )
$rawArgs Webmozart\Console\Api\Args\RawArgs The unparsed console arguments.
$args Webmozart\Console\Api\Args\Args The parsed console arguments.
    public function __construct(RawArgs $rawArgs, Args $args = null)
    {
        $this->rawArgs = $rawArgs;
        $this->args = $args;
    }