Beispiel #1
0
 /**
  * @return string
  */
 public function createForProperty(PropertyReflectionInterface $property, ClassReflectionInterface $class = null)
 {
     $className = $class !== null ? $class->getName() : $property->getDeclaringClassName();
     return $this->createForClass($className) . '#' . ($property->isMagic() ? 'm' : '') . '$' . $property->getName();
 }