diff --git a/lib/Doctrine/ORM/Tools/EntityGenerator.php b/lib/Doctrine/ORM/Tools/EntityGenerator.php index 853e1e3b4..c9fc21136 100644 --- a/lib/Doctrine/ORM/Tools/EntityGenerator.php +++ b/lib/Doctrine/ORM/Tools/EntityGenerator.php @@ -691,6 +691,7 @@ public function () if ($this->_hasMethod($methodName, $metadata)) { return; } + $this->_staticReflection[$metadata->name]['methods'][] = $methodName; $var = sprintf('_%sMethodTemplate', $type); $template = self::$$var; @@ -723,6 +724,7 @@ public function () if ($this->_hasMethod($methodName, $metadata)) { return; } + $this->_staticReflection[$metadata->name]['methods'][] = $methodName; $replacements = array( '' => $this->_annotationsPrefix . $name,