f13ae125029c592ae81496d8c70f3d0767f97534
[yaffs-website] / web / modules / contrib / diff / src / Annotation / DiffLayoutBuilder.php
1 <?php
2
3 namespace Drupal\diff\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines a DiffLayoutBuilder annotation object.
9  *
10  * Diff builders handle how fields are compared by the diff module.
11  *
12  * @Annotation
13  */
14 class DiffLayoutBuilder extends Plugin {
15
16   /**
17    * The plugin ID.
18    *
19    * @var string
20    */
21   public $id;
22
23   /**
24    * The human-readable name of the diff layout builder.
25    *
26    * @var \Drupal\Core\Annotation\Translation
27    *
28    * @ingroup plugin_translatable
29    */
30   public $label;
31
32   /**
33    * The plugin description.
34    *
35    * @var string
36    */
37   public $description;
38
39 }