Gaufrette\Adapter\PhpseclibSftp::initialize PHP Method

initialize() protected method

It will ensure the root directory exists
protected initialize ( )
    protected function initialize()
    {
        if ($this->initialized) {
            return;
        }
        $this->ensureDirectoryExists($this->directory, $this->create);
        $this->initialized = true;
    }