Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / web / modules / contrib / search_api_synonym / src / Annotation / SearchApiSynonymImport.php
diff --git a/web/modules/contrib/search_api_synonym/src/Annotation/SearchApiSynonymImport.php b/web/modules/contrib/search_api_synonym/src/Annotation/SearchApiSynonymImport.php
new file mode 100644 (file)
index 0000000..4c95297
--- /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 SearchApiSynonymImport extends Plugin {
+
+  /**
+   * The plugin id.
+   *
+   * @var string
+   */
+  public $id;
+
+  /**
+   * The plugins label.
+   *
+   * @var string
+   */
+  public $label;
+
+  /**
+   * The plugin description.
+   *
+   * @var string
+   */
+  public $description;
+
+}