Version 1
[yaffs-website] / web / core / modules / system / tests / modules / plugin_test_extended / src / Plugin / Annotation / PluginExtended.php
diff --git a/web/core/modules/system/tests/modules/plugin_test_extended/src/Plugin/Annotation/PluginExtended.php b/web/core/modules/system/tests/modules/plugin_test_extended/src/Plugin/Annotation/PluginExtended.php
new file mode 100644 (file)
index 0000000..f900646
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+namespace Drupal\plugin_test_extended\Plugin\Annotation;
+
+use Drupal\Component\Annotation\Plugin;
+
+/**
+ * Defines a test annotation that extends an annotation in another namespace.
+ *
+ * @Annotation
+ */
+class PluginExtended extends Plugin {
+
+}