Example #1
0
 /**
  * Sorts methods by FQN.
  *
  * @param \ApiGen\ReflectionMethod $one
  * @param \ApiGen\ReflectionMethod $two
  *
  * @return integer
  */
 private function sortMethods(ReflectionMethod $one, ReflectionMethod $two)
 {
     return strcasecmp($one->getDeclaringClassName() . '::' . $one->getName(), $two->getDeclaringClassName() . '::' . $two->getName());
 }
 /**
  * Returns a link to method in class summary file.
  *
  * @param \ApiGen\ReflectionMethod $method Method reflection
  * @param \ApiGen\ReflectionClass  $class  Method declaring class
  *
  * @return string
  */
 public function getMethodUrl(ReflectionMethod $method, ReflectionClass $class = null)
 {
     $className = null !== $class ? $class->getName() : $method->getDeclaringClassName();
     return $this->getClassUrl($className) . '#' . ($method->isMagic() ? 'm' : '') . '_' . ($method->getOriginalName() ?: $method->getName());
 }