<?php/**
* @file
* Contains \Drupal\Core\TypedData\Type\Any.
*/namespaceDrupal\Core\TypedData\Type;
useDrupal\Core\TypedData\TypedData;
/**
* The "any" data type.
*
* The "any" data type does not implement a list or complex data interface, nor
* is it mappable to any primitive type. Thus, it may contain any PHP data for
* which no further metadata is available.
*/class Anyextends TypedData {
/**
* The data value.
*
* @var mixed
*/
protected $value;
}