1
0
mirror of synced 2024-12-13 22:56:04 +03:00

Merge branch 'DDC-1257'

This commit is contained in:
Benjamin Eberlei 2011-07-09 15:14:31 +02:00
commit 8b92dc5265

View File

@ -691,6 +691,7 @@ public function <methodName>()
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 <methodName>()
if ($this->_hasMethod($methodName, $metadata)) {
return;
}
$this->_staticReflection[$metadata->name]['methods'][] = $methodName;
$replacements = array(
'<name>' => $this->_annotationsPrefix . $name,