Version 1
[yaffs-website] / web / core / lib / Drupal / Core / TypedData / Type / UriInterface.php
1 <?php
2
3 namespace Drupal\Core\TypedData\Type;
4
5 use Drupal\Core\TypedData\PrimitiveInterface;
6
7 /**
8  * Interface for URIs.
9  *
10  * The plain value of a URI is an absolute URI represented as PHP string.
11  *
12  * @ingroup typed_data
13  */
14 interface UriInterface extends PrimitiveInterface {
15
16 }