Same filename and directory in other branches
  1. 8.9.x core/lib/Drupal/Core/TypedData/Type/UriInterface.php
  2. 9 core/lib/Drupal/Core/TypedData/Type/UriInterface.php

Namespace

Drupal\Core\TypedData\Type

File

core/lib/Drupal/Core/TypedData/Type/UriInterface.php
View source
<?php

namespace Drupal\Core\TypedData\Type;

use Drupal\Core\TypedData\PrimitiveInterface;

/**
 * Interface for URIs.
 *
 * The plain value of a URI is an absolute URI represented as PHP string.
 *
 * @ingroup typed_data
 */
interface UriInterface extends PrimitiveInterface {

}

Interfaces

Namesort descending Description
UriInterface Interface for URIs.