[DDC-1215] Fix EntityGenerator inheritance regenerating properties and methods
This commit is contained in:
parent
2e3d2398d9
commit
598ab36968
1 changed files with 16 additions and 0 deletions
|
@ -462,6 +462,14 @@ public function <methodName>()
|
||||||
|
|
||||||
private function _hasProperty($property, ClassMetadataInfo $metadata)
|
private function _hasProperty($property, ClassMetadataInfo $metadata)
|
||||||
{
|
{
|
||||||
|
if ($this->_extendsClass()) {
|
||||||
|
// don't generate property if its already on the base class.
|
||||||
|
$reflClass = new \ReflectionClass($this->_getClassToExtend());
|
||||||
|
if ($reflClass->hasProperty($property)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
isset($this->_staticReflection[$metadata->name]) &&
|
isset($this->_staticReflection[$metadata->name]) &&
|
||||||
in_array($property, $this->_staticReflection[$metadata->name]['properties'])
|
in_array($property, $this->_staticReflection[$metadata->name]['properties'])
|
||||||
|
@ -470,6 +478,14 @@ public function <methodName>()
|
||||||
|
|
||||||
private function _hasMethod($method, ClassMetadataInfo $metadata)
|
private function _hasMethod($method, ClassMetadataInfo $metadata)
|
||||||
{
|
{
|
||||||
|
if ($this->_extendsClass()) {
|
||||||
|
// don't generate method if its already on the base class.
|
||||||
|
$reflClass = new \ReflectionClass($this->_getClassToExtend());
|
||||||
|
if ($reflClass->hasMethod($method)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
isset($this->_staticReflection[$metadata->name]) &&
|
isset($this->_staticReflection[$metadata->name]) &&
|
||||||
in_array($method, $this->_staticReflection[$metadata->name]['methods'])
|
in_array($method, $this->_staticReflection[$metadata->name]['methods'])
|
||||||
|
|
Loading…
Add table
Reference in a new issue