StringInterface.php in Drupal 10
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\Core\TypedData\TypeFile
core/lib/Drupal/Core/TypedData/Type/StringInterface.phpView 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
Name | Description |
---|---|
StringInterface | Interface for strings. |