/
home
/
obinna
/
html
/
restaurants
/
vendor
/
doctrine
/
mongodb-odm
/
lib
/
Doctrine
/
ODM
/
MongoDB
/
Proxy
/
Resolver
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\ODM\MongoDB\Proxy\Resolver; interface ClassNameResolver { /** * Gets the real class name of a class name that could be a proxy. */ public function getRealClass(string $class): string; }