You are here

public function TypedData::getParent in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/TypedData/TypedData.php \Drupal\Core\TypedData\TypedData::getParent()

Returns the parent data structure; i.e. either complex data or a list.

Return value

\Drupal\Core\TypedData\TraversableTypedDataInterface|null The parent data structure, either complex data or a list; or NULL if this is the root of the typed data tree.

Overrides TypedDataInterface::getParent

2 calls to TypedData::getParent()
DateTimeComputed::getValue in core/modules/datetime/src/DateTimeComputed.php
Gets the data value.
TextProcessed::getValue in core/modules/text/src/TextProcessed.php
Gets the data value.

File

core/lib/Drupal/Core/TypedData/TypedData.php, line 199
Contains \Drupal\Core\TypedData\TypedData.

Class

TypedData
The abstract base class for typed data.

Namespace

Drupal\Core\TypedData

Code

public function getParent() {
  return $this->parent;
}