/
home
/
obinna
/
html
/
restaurants
/
vendor
/
doctrine
/
mongodb-odm
/
lib
/
Doctrine
/
ODM
/
MongoDB
/
Repository
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\ODM\MongoDB\Repository; use Doctrine\ODM\MongoDB\DocumentManager; use Doctrine\Persistence\ObjectRepository; /** * Interface for document repository factory. */ interface RepositoryFactory { /** * Gets the repository for a document class. */ public function getRepository(DocumentManager $documentManager, string $documentName): ObjectRepository; }