DDC-1257 - Fix bug where validation callbacks are added multiple times in EntityGenerator
This commit is contained in:
parent
305e0345ef
commit
442a2b3a51
1 changed files with 2 additions and 0 deletions
|
@ -691,6 +691,7 @@ public function <methodName>()
|
||||||
if ($this->_hasMethod($methodName, $metadata)) {
|
if ($this->_hasMethod($methodName, $metadata)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
$this->_staticReflection[$metadata->name]['methods'][] = $methodName;
|
||||||
|
|
||||||
$var = sprintf('_%sMethodTemplate', $type);
|
$var = sprintf('_%sMethodTemplate', $type);
|
||||||
$template = self::$$var;
|
$template = self::$$var;
|
||||||
|
@ -723,6 +724,7 @@ public function <methodName>()
|
||||||
if ($this->_hasMethod($methodName, $metadata)) {
|
if ($this->_hasMethod($methodName, $metadata)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
$this->_staticReflection[$metadata->name]['methods'][] = $methodName;
|
||||||
|
|
||||||
$replacements = array(
|
$replacements = array(
|
||||||
'<name>' => $this->_annotationsPrefix . $name,
|
'<name>' => $this->_annotationsPrefix . $name,
|
||||||
|
|
Loading…
Add table
Reference in a new issue