You are here

public function AnnotationObject::getId in Markdown 8.2

Gets the unique ID for this annotated class.

Return value

string

Overrides AnnotationBase::getId

8 calls to AnnotationObject::getId()
AnnotationObject::id in src/Annotation/AnnotationObject.php
Gets the unique identifier of the plugin.
ComposerPackage::detectVersion in src/Annotation/ComposerPackage.php
Detects the installed version of a Composer package.
ComposerPackage::getAvailableVersions in src/Annotation/ComposerPackage.php
Retrieves the available versions of the library.
ComposerPackage::getVersionUrl in src/Annotation/ComposerPackage.php
Retrieves the version as a URL.
ComposerPackage::requestPackage in src/Annotation/ComposerPackage.php
Retrieves the package JSON data.

... See full list

File

src/Annotation/AnnotationObject.php, line 240

Class

AnnotationObject
Base annotation class for retrieving the annotation as an object.

Namespace

Drupal\markdown\Annotation

Code

public function getId() {
  return (string) parent::getId();
}