Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. AnnotatedClassDiscovery.php

function AnnotatedClassDiscovery::getAnnotationReader

Same name in this branch
  1. 11.1.x core/lib/Drupal/Component/Annotation/Plugin/Discovery/AnnotatedClassDiscovery.php \Drupal\Component\Annotation\Plugin\Discovery\AnnotatedClassDiscovery::getAnnotationReader()

Overrides AnnotatedClassDiscovery::getAnnotationReader

1 call to AnnotatedClassDiscovery::getAnnotationReader()
AnnotatedClassDiscoveryAutomatedProviders::getDefinitions in core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php
Gets the definition of all plugins for this type.

File

core/lib/Drupal/Core/Plugin/Discovery/AnnotatedClassDiscovery.php, line 74

Class

AnnotatedClassDiscovery
Defines a discovery mechanism to find annotated plugins in PSR-4 namespaces.

Namespace

Drupal\Core\Plugin\Discovery

Code

protected function getAnnotationReader() {
    if (!isset($this->annotationReader)) {
        $reader = parent::getAnnotationReader();
        // Add the Core annotation classes like @Translation.
        $reader->addNamespace('Drupal\\Core\\Annotation');
        $this->annotationReader = $reader;
    }
    return $this->annotationReader;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal