Security update for Core, with self-updated composer
[yaffs-website] / web / core / lib / Drupal / Core / Field / Plugin / DataType / FieldItem.php
1 <?php
2
3 namespace Drupal\Core\Field\Plugin\DataType;
4
5 /**
6  * Defines the base plugin for deriving data types for field types.
7  *
8  * Note that the class only register the plugin, and is actually never used.
9  * \Drupal\Core\Field\FieldItemBase is available for use as base class.
10  *
11  * @DataType(
12  *   id = "field_item",
13  *   label = @Translation("Field item"),
14  *   list_class = "\Drupal\Core\Field\FieldItemList",
15  *   deriver = "Drupal\Core\Field\Plugin\DataType\Deriver\FieldItemDeriver"
16  * )
17  */
18 abstract class FieldItem {
19
20 }