Issue #2047119 by fago, msankhala, LinL: Remove deprecated documentation in DataType annotation
parent
6f48525b43
commit
5d7ae05905
|
@ -10,11 +10,11 @@ use Drupal\Component\Annotation\Plugin;
|
||||||
* The typed data API allows modules to support any kind of data based upon
|
* The typed data API allows modules to support any kind of data based upon
|
||||||
* pre-defined primitive types and interfaces for complex data and lists.
|
* pre-defined primitive types and interfaces for complex data and lists.
|
||||||
*
|
*
|
||||||
* Defined data types may map to one of the pre-defined primitive types in
|
* Defined data types may map to one of the pre-defined primitive types below
|
||||||
* \Drupal\Core\TypedData\Primitive or may be complex data types, containing on
|
* \Drupal\Core\TypedData\Type or may be complex data types, containing
|
||||||
* or more data properties. Typed data objects for complex data types have to
|
* one or more data properties. Typed data objects for complex data types have
|
||||||
* implement the \Drupal\Core\TypedData\ComplexDataInterface. Further interface
|
* to implement the \Drupal\Core\TypedData\ComplexDataInterface. Further
|
||||||
* that may be implemented are:
|
* interfaces that may be implemented are:
|
||||||
* - \Drupal\Core\Access\AccessibleInterface
|
* - \Drupal\Core\Access\AccessibleInterface
|
||||||
* - \Drupal\Core\TypedData\TranslatableInterface
|
* - \Drupal\Core\TypedData\TranslatableInterface
|
||||||
*
|
*
|
||||||
|
@ -82,16 +82,6 @@ class DataType extends Plugin {
|
||||||
*/
|
*/
|
||||||
public $list_definition_class = '\Drupal\Core\TypedData\ListDataDefinition';
|
public $list_definition_class = '\Drupal\Core\TypedData\ListDataDefinition';
|
||||||
|
|
||||||
/**
|
|
||||||
* The pre-defined primitive type that this data type maps to.
|
|
||||||
*
|
|
||||||
* If set, it must be a constant defined by \Drupal\Core\TypedData\Primitive
|
|
||||||
* such as \Drupal\Core\TypedData\Primitive::STRING.
|
|
||||||
*
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
public $primitive_type;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An array of validation constraints for this type.
|
* An array of validation constraints for this type.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue