public DataDefinition::setDataType($type)
Sets the data type.
Parameters
string $type: The data type to set.
Return value
static The object itself for chaining.
File
- core/lib/Drupal/Core/TypedData/DataDefinition.php, line 64
Class
- DataDefinition
- A typed data definition class for defining data based on defined data types.
Namespace
Drupal\Core\TypedData
Code
1 2 3 4 | public function setDataType( $type ) { $this ->definition[ 'type' ] = $type ; return $this ; } |
Please login to continue.