Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / pathauto / src / Annotation / AliasType.php
1 <?php
2
3 namespace Drupal\pathauto\Annotation;
4
5 use Drupal\Component\Annotation\Plugin;
6
7 /**
8  * Defines an AliasType annotation.
9  *
10  * @Annotation
11  */
12 class AliasType extends Plugin {
13
14   /**
15    * The plugin ID.
16    *
17    * @var string
18    */
19   public $id;
20
21   /**
22    * The human-readable name of the action plugin.
23    *
24    * @var \Drupal\Core\Annotation\Translation
25    *
26    * @ingroup plugin_translatable
27    */
28   public $label;
29
30   /**
31    * The token types.
32    *
33    * @var string[]
34    */
35   public $types = array();
36
37 }