1
0
Fork 0
mirror of synced 2025-03-28 19:03:50 +03:00

DDC-651 - Fix short name being used instead of long-name in extends section of EntityGenerator

This commit is contained in:
Benjamin Eberlei 2010-08-08 16:43:52 +02:00
parent ea954e8123
commit 21753c71c9

View file

@ -379,7 +379,7 @@ public function <methodName>()
{
$refl = new \ReflectionClass($this->_getClassToExtend());
return $refl->getShortName();
return $refl->getName();
}
private function _getClassToExtendNamespace()