You are here

public function SerializedData::getData in REST Views 8

Same name and namespace in other branches
  1. 2.0.x src/SerializedData.php \Drupal\rest_views\SerializedData::getData()

Extract the wrapped data.

Return value

mixed The wrapped data.

File

src/SerializedData.php, line 64

Class

SerializedData
Wrapper for passing serialized data through render arrays.

Namespace

Drupal\rest_views

Code

public function getData() {
  return $this->data;
}