You are here

public function CacheableNormalization::getNormalization in JSON:API 8.2

Gets the decorated normalization.

Return value

array|string|int|float|bool|null The normalization.

1 method overrides CacheableNormalization::getNormalization()
CacheableOmission::getNormalization in src/Normalizer/Value/CacheableOmission.php
A CacheableOmission should never have its normalization retrieved.

File

src/Normalizer/Value/CacheableNormalization.php, line 65

Class

CacheableNormalization
Use to store normalized data and its cacheability.

Namespace

Drupal\jsonapi\Normalizer\Value

Code

public function getNormalization() {
  return $this->normalization;
}