<?php/**
* @file
* Contains \Drupal\Core\TypedData\Type\String.
*/namespaceDrupal\Core\TypedData\Type;
useDrupal\Core\TypedData\TypedData;
/**
* The string data type.
*
* The plain value of a string is a regular PHP string. For setting the value
* any PHP variable that casts to a string may be passed.
*/class Stringextends TypedData {
/**
* The data value.
*
* @var string
*/
protected $value;
}