Backup of db before drupal security update
[yaffs-website] / web / core / lib / Drupal / Core / TypedData / Plugin / DataType / Any.php
1 <?php
2
3 namespace Drupal\Core\TypedData\Plugin\DataType;
4
5 use Drupal\Core\TypedData\TypedData;
6
7 /**
8  * The "any" data type.
9  *
10  * The "any" data type does not implement a list or complex data interface, nor
11  * is it mappable to any primitive type. Thus, it may contain any PHP data for
12  * which no further metadata is available.
13  *
14  * @DataType(
15  *   id = "any",
16  *   label = @Translation("Any data")
17  * )
18  */
19 class Any extends TypedData {
20
21   /**
22    * The data value.
23    *
24    * @var mixed
25    */
26   protected $value;
27
28 }