Backup of db before drupal security update
[yaffs-website] / web / core / lib / Drupal / Core / TypedData / Plugin / DataType / Uri.php
1 <?php
2
3 namespace Drupal\Core\TypedData\Plugin\DataType;
4
5 use Drupal\Core\TypedData\Type\UriInterface;
6
7 /**
8  * The URI data type.
9  *
10  * The plain value of a URI is an absolute URI represented as PHP string.
11  *
12  * @DataType(
13  *   id = "uri",
14  *   label = @Translation("URI")
15  * )
16  */
17 class Uri extends StringData implements UriInterface {
18
19 }