You are here

StringInterface.php in Drupal 10

File

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

namespace Drupal\Core\TypedData\Type;

use Drupal\Core\TypedData\PrimitiveInterface;

/**
 * Interface for strings.
 *
 * The plain value of a string is a regular PHP string. For setting the value
 * any PHP variable that casts to a string may be passed.
 *
 * @ingroup typed_data
 */
interface StringInterface extends PrimitiveInterface {

}

Interfaces

Namesort descending Description
StringInterface Interface for strings.