Phalcon\Db\Adapter\MongoDB\GridFS\Bucket::createPathForUpload PHP Method

createPathForUpload() private method

Creates a path for a new GridFS file, which does not yet have an ID.
private createPathForUpload ( ) : string
return string
    private function createPathForUpload()
    {
        return sprintf('%s://%s/%s.files', self::$streamWrapperProtocol, urlencode($this->databaseName), urlencode($this->options['bucketName']));
    }