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
1 <?php
2
3 namespace Drupal\search_api_synonym\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines a Plugin annotation object.
9  *
10  * @ingroup plugin_api
11  *
12  * @Annotation
13  */
14 class SearchApiSynonymImport extends Plugin {
15
16   /**
17    * The plugin id.
18    *
19    * @var string
20    */
21   public $id;
22
23   /**
24    * The plugins label.
25    *
26    * @var string
27    */
28   public $label;
29
30   /**
31    * The plugin description.
32    *
33    * @var string
34    */
35   public $description;
36
37 }