%PDF- %PDF-
Direktori : /var/www/html/hr/api/vendor/flowjs/flow-php-server/src/Flow/Mongo/ |
Current File : /var/www/html/hr/api/vendor/flowjs/flow-php-server/src/Flow/Mongo/MongoConfig.php |
<?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; } }