1
0
mirror of synced 2025-01-18 06:21:40 +03:00

Merge pull request #316 from fixe/patch-1

Fixes autoloading of generated Annotations
This commit is contained in:
Benjamin Eberlei 2012-04-16 09:48:50 -07:00
commit 193ac077d6

View File

@ -832,7 +832,7 @@ public function <methodName>()
$this->_staticReflection[$metadata->name]['methods'][] = $methodName; $this->_staticReflection[$metadata->name]['methods'][] = $methodName;
$replacements = array( $replacements = array(
'<name>' => $this->_annotationsPrefix . $name, '<name>' => $this->_annotationsPrefix . ucfirst($name),
'<methodName>' => $methodName, '<methodName>' => $methodName,
); );