public function StaticReflectionParser::getReflectionProperty

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

Overrides ReflectionProviderInterface::getReflectionProperty

File

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

Class

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

Namespace

Doctrine\Common\Reflection

Code

public function getReflectionProperty($propertyName) {
  return new StaticReflectionProperty($this, $propertyName);
}