274cf848666293d47477821eb61c93e1de395ce7
[yaffs-website] / 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 }