DDC-651 - Fix short name being used instead of long-name in extends section of EntityGenerator
This commit is contained in:
parent
ea954e8123
commit
21753c71c9
1 changed files with 1 additions and 1 deletions
|
@ -379,7 +379,7 @@ public function <methodName>()
|
||||||
{
|
{
|
||||||
$refl = new \ReflectionClass($this->_getClassToExtend());
|
$refl = new \ReflectionClass($this->_getClassToExtend());
|
||||||
|
|
||||||
return $refl->getShortName();
|
return $refl->getName();
|
||||||
}
|
}
|
||||||
|
|
||||||
private function _getClassToExtendNamespace()
|
private function _getClassToExtendNamespace()
|
||||||
|
|
Loading…
Add table
Reference in a new issue