public function PluginExample::get in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/tests/modules/plugin_test/src/Plugin/Annotation/PluginExample.php \Drupal\plugin_test\Plugin\Annotation\PluginExample::get()
- 10 core/modules/system/tests/modules/plugin_test/src/Plugin/Annotation/PluginExample.php \Drupal\plugin_test\Plugin\Annotation\PluginExample::get()
Gets the value of an annotation.
Overrides AnnotationInterface::get
File
- core/modules/ system/ tests/ modules/ plugin_test/ src/ Plugin/ Annotation/ PluginExample.php, line 31 
Class
- PluginExample
- Defines a custom Plugin annotation.
Namespace
Drupal\plugin_test\Plugin\AnnotationCode
public function get() {
  return [
    'id' => $this->id,
    'custom' => $this->custom,
    'class' => $this->class,
    'provider' => $this->provider,
  ];
}