1
0
mirror of synced 2024-12-13 22:56:04 +03:00

DDC-830 - Fix extended class in EntityGenerator

This commit is contained in:
Benjamin Eberlei 2010-10-30 09:16:55 +02:00
parent 0a8ff7a030
commit 338476805d

View File

@ -1,7 +1,5 @@
<?php
/*
* $Id$
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@ -370,7 +368,7 @@ public function <methodName>()
{
$refl = new \ReflectionClass($this->_getClassToExtend());
return $refl->getName();
return '\\' . $refl->getName();
}
private function _getClassName(ClassMetadataInfo $metadata)