示例#1
0
 public function pathForProperty(array $context, PropertyReflection $property)
 {
     return $this->relativeUri($this->currentDepth) . str_replace('\\', '/', $property->getClass()->getName()) . '.html#property_' . $property->getName();
 }
示例#2
0
 public function addProperty(PropertyReflection $property)
 {
     $this->properties[$property->getName()] = $property;
     $property->setClass($this);
 }