Uri.php

Contains \Drupal\Core\TypedData\Type\Uri.

Namespace

Drupal\Core\TypedData\Type

File

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

/**
 * @file
 * Contains \Drupal\Core\TypedData\Type\Uri.
 */
namespace Drupal\Core\TypedData\Type;

use Drupal\Core\TypedData\TypedData;

/**
 * The URI data type.
 *
 * The plain value of a URI is an absolute URI represented as PHP string.
 */
class Uri extends TypedData {

  /**
   * The data value.
   *
   * @var string
   */
  protected $value;

}

Classes

Namesort descending Description
Uri The URI data type.