File "MongoConfig.php"

Full path: /home/auuge/domains/files.auu.ge/private_html/up/vendor/flowjs/flow-php-server/src/Flow/Mongo/MongoConfig.php
File size: 498 bytes
MIME-type: text/x-php
Charset: utf-8

Download   Open   Back

<?php

namespace Flow\Mongo;

use Flow\Config;

/**
 * @codeCoverageIgnore
 */
class MongoConfig extends Config implements MongoConfigInterface
{
    private $gridFs;

    /**
     * @param \MongoGridFS $gridFS storage of the upload (and chunks)
     */
    function __construct(\MongoGridFS $gridFS)
    {
        parent::__construct();
        $this->gridFs = $gridFS;
    }


    /**
     * @return \MongoGridFS
     */
    public function getGridFs()
    {
        return $this->gridFs;
    }
}