/
home
/
obinna
/
html
/
restaurants
/
vendor
/
doctrine
/
mongodb-odm
/
lib
/
Doctrine
/
ODM
/
MongoDB
/
Id
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\ODM\MongoDB\Id; use Doctrine\ODM\MongoDB\DocumentManager; interface IdGenerator { /** * Generates an identifier for a document. * * @return mixed */ public function generate(DocumentManager $dm, object $document); }