1
0
mirror of synced 2024-12-14 15:16:04 +03:00

Merge branch 'DDC-1030'

This commit is contained in:
Benjamin Eberlei 2011-02-13 10:02:34 +01:00
commit 64088fce5d

View File

@ -412,6 +412,8 @@ public function <methodName>()
$token = $tokens[$i];
if ($token[0] == T_NAMESPACE) {
$lastSeenNamespace = $tokens[$i+2][1] . "\\";
} else if ($token[0] == T_NS_SEPARATOR) {
$lastSeenNamespace .= $tokens[$i+1][1] . "\\";
} else if ($token[0] == T_CLASS) {
$lastSeenClass = $lastSeenNamespace . $tokens[$i+2][1];
$this->_staticReflection[$lastSeenClass]['properties'] = array();