Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / web / modules / contrib / search_api_synonym / src / Annotation / SearchApiSynonymExport.php
diff --git a/web/modules/contrib/search_api_synonym/src/Annotation/SearchApiSynonymExport.php b/web/modules/contrib/search_api_synonym/src/Annotation/SearchApiSynonymExport.php
new file mode 100644 (file)
index 0000000..b157980
--- /dev/null
@@ -0,0 +1,37 @@
+<?php
+
+namespace Drupal\search_api_synonym\Annotation;
+
+use Drupal\Component\Annotation\Plugin;
+
+/**
+ * Defines a Plugin annotation object.
+ *
+ * @ingroup plugin_api
+ *
+ * @Annotation
+ */
+class SearchApiSynonymExport extends Plugin {
+
+  /**
+   * The plugin id.
+   *
+   * @var string
+   */
+  public $id;
+
+  /**
+   * The plugins label.
+   *
+   * @var string
+   */
+  public $label;
+
+  /**
+   * The plugin description.
+   *
+   * @var string
+   */
+  public $description;
+
+}