Interim commit.
[yaffs-website] / web / modules / contrib / bootstrap_layouts / src / Annotation / BootstrapLayoutsUpdate.php
1 <?php
2
3 namespace Drupal\bootstrap_layouts\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines a BootstrapLayoutsHandler annotation object.
9  *
10  * @Annotation
11  */
12 class BootstrapLayoutsUpdate extends Plugin {
13
14   /**
15    * The plugin ID.
16    *
17    * @var string
18    */
19   public $id;
20
21   /**
22    * The schema number to be invoked on.
23    *
24    * @var int
25    */
26   public $schema;
27
28 }
29