You are here

public function SimpleAnnotationReader::getPropertyAnnotations in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Component/Annotation/Doctrine/SimpleAnnotationReader.php \Drupal\Component\Annotation\Doctrine\SimpleAnnotationReader::getPropertyAnnotations()
  2. 9 core/lib/Drupal/Component/Annotation/Doctrine/SimpleAnnotationReader.php \Drupal\Component\Annotation\Doctrine\SimpleAnnotationReader::getPropertyAnnotations()
1 call to SimpleAnnotationReader::getPropertyAnnotations()
SimpleAnnotationReader::getPropertyAnnotation in core/lib/Drupal/Component/Annotation/Doctrine/SimpleAnnotationReader.php

File

core/lib/Drupal/Component/Annotation/Doctrine/SimpleAnnotationReader.php, line 115
This class is a near-copy of Doctrine\Common\Annotations\SimpleAnnotationReader, which is part of the Doctrine project: <http://www.doctrine-project.org>. It was copied from version 1.2.7.

Class

SimpleAnnotationReader
Simple Annotation Reader.

Namespace

Drupal\Component\Annotation\Doctrine

Code

public function getPropertyAnnotations(\ReflectionProperty $property) {
  return $this->parser
    ->parse($property
    ->getDocComment(), 'property ' . $property
    ->getDeclaringClass()->name . '::$' . $property
    ->getName());
}