* (c) Doctrine Project, Benjamin Eberlei * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Doctrine\Bundle\DoctrineBundle\Mapping; /** * @author Fabien Potencier */ class DisconnectedMetadataFactory extends MetadataFactory { /** * @return string */ protected function getClassMetadataFactoryClass() { return 'Doctrine\\ORM\\Tools\\DisconnectedClassMetadataFactory'; } }