public function Update::getId in Lightning Core 8
Same name and namespace in other branches
- 8.5 src/Annotation/Update.php \Drupal\lightning_core\Annotation\Update::getId()
- 8.2 src/Annotation/Update.php \Drupal\lightning_core\Annotation\Update::getId()
- 8.3 src/Annotation/Update.php \Drupal\lightning_core\Annotation\Update::getId()
- 8.4 src/Annotation/Update.php \Drupal\lightning_core\Annotation\Update::getId()
Gets the unique ID for this annotated class.
Return value
string
Overrides PluginID::getId
File
- src/
Annotation/ Update.php, line 17
Class
- Update
- Defines a plugin annotation that contains only a target version number.
Namespace
Drupal\lightning_core\AnnotationCode
public function getId() {
return $this
->getProvider() . ':' . parent::getId();
}