public function StaticReflectionParser::getReflectionMethod

Get the ReflectionMethod equivalent for the method of this file / class.

Overrides ReflectionProviderInterface::getReflectionMethod

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Reflection/StaticReflectionParser.php, line 225

Class

StaticReflectionParser
Parses a file for namespaces/use/class declarations.

Namespace

Doctrine\Common\Reflection

Code

public function getReflectionMethod($methodName) {
  return new StaticReflectionMethod($this, $methodName);
}