<?php/**
* @file
* Contains \Drupal\Core\TypedData\Type\Uri.
*/namespaceDrupal\Core\TypedData\Type;
useDrupal\Core\TypedData\TypedData;
/**
* The URI data type.
*
* The plain value of a URI is an absolute URI represented as PHP string.
*/class Uriextends TypedData {
/**
* The data value.
*
* @var string
*/
protected $value;
}