Skip to content

Commit

Permalink
DDC-651 - Fix short name being used instead of long-name in extends s…
Browse files Browse the repository at this point in the history
…ection of EntityGenerator
  • Loading branch information
beberlei committed Aug 8, 2010
1 parent ea954e8 commit 21753c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/ORM/Tools/EntityGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ private function _getClassToExtendName()
{
$refl = new \ReflectionClass($this->_getClassToExtend());

return $refl->getShortName();
return $refl->getName();
}

private function _getClassToExtendNamespace()
Expand Down

0 comments on commit 21753c7

Please sign in to comment.