CodeExplorer getStaticReflectionParserForDeclaringClass example
public function getStaticReflectionParserForDeclaringClass($type,
$name) { $this->
parse();
if (isset($this->docComment
[$type][$name])) { return $this;
} if (!
empty($this->parentClassName
)) { return $this->
getParentStaticReflectionParser()->
getStaticReflectionParserForDeclaringClass($type,
$name);
} throw new ReflectionException('Invalid ' .
$type . ' "' .
$name . '"'
);
}}