Consolidation\Cgr\CommandToExec::__construct PHP Method

__construct() public method

Hold some command values to later exec
public __construct ( $execPath, $arguments, $env = [], $dir = '' )
    public function __construct($execPath, $arguments, $env = array(), $dir = '')
    {
        $this->execPath = $execPath;
        $this->arguments = $arguments;
        $this->env = new Env($env);
        $this->dir = $dir;
    }