public function Uri::setValue

Implements TypedDataInterface::setValue().

Overrides TypedData::setValue

File

drupal/core/lib/Drupal/Core/TypedData/Type/Uri.php, line 29
Definition of Drupal\Core\TypedData\Type\Uri.

Class

Uri
The URI data type.

Namespace

Drupal\Core\TypedData\Type

Code

public function setValue($value) {
  $this->value = isset($value) ? (string) $value : $value;
}