Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / options / src / Plugin / migrate / field / d7 / ListField.php
1 <?php
2
3 namespace Drupal\options\Plugin\migrate\field\d7;
4
5 use Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase;
6
7 /**
8  * @MigrateField(
9  *   id = "list",
10  *   type_map = {
11  *     "list_boolean" = "boolean",
12  *     "list_integer" = "list_integer",
13  *     "list_text" = "list_string",
14  *   },
15  *   core = {7}
16  * )
17  */
18 class ListField extends FieldPluginBase {}