Version 1
[yaffs-website] / web / core / lib / Drupal / Core / TypedData / Type / StringInterface.php
1 <?php
2
3 namespace Drupal\Core\TypedData\Type;
4
5 use Drupal\Core\TypedData\PrimitiveInterface;
6
7 /**
8  * Interface for strings.
9  *
10  * The plain value of a string is a regular PHP string. For setting the value
11  * any PHP variable that casts to a string may be passed.
12  *
13  * @ingroup typed_data
14  */
15 interface StringInterface extends PrimitiveInterface {
16
17 }