You are here

public function HttpExceptionNormalizer::normalize in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/src/Normalizer/HttpExceptionNormalizer.php \Drupal\jsonapi\Normalizer\HttpExceptionNormalizer::normalize()

File

core/modules/jsonapi/src/Normalizer/HttpExceptionNormalizer.php, line 51

Class

HttpExceptionNormalizer
Normalizes an HttpException in compliance with the JSON:API specification.

Namespace

Drupal\jsonapi\Normalizer

Code

public function normalize($object, $format = NULL, array $context = []) {
  $cacheability = new CacheableMetadata();
  $cacheability
    ->addCacheableDependency($object);
  return new HttpExceptionNormalizerValue($cacheability, static::rasterizeValueRecursive($this
    ->buildErrorObjects($object)));
}