SerializationTestNormalizer.php

Same filename and directory in other branches
  1. 9 core/modules/serialization/tests/serialization_test/src/SerializationTestNormalizer.php
  2. 8.9.x core/modules/serialization/tests/serialization_test/src/SerializationTestNormalizer.php
  3. 11.x core/modules/serialization/tests/serialization_test/src/SerializationTestNormalizer.php

Namespace

Drupal\serialization_test

File

core/modules/serialization/tests/serialization_test/src/SerializationTestNormalizer.php

View source
<?php

namespace Drupal\serialization_test;

use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
class SerializationTestNormalizer implements NormalizerInterface {
  
  /**
   * The format that this Normalizer supports.
   *
   * @var string
   */
  protected static $format = 'serialization_test';
  
  /**
   * {@inheritdoc}
   */
  public function normalize($object, $format = NULL, array $context = []) : array|string|int|float|bool|\ArrayObject|null {
    $normalized = (array) $object;
    // Add identifying value that can be used to verify that the expected
    // normalizer was invoked.
    $normalized['normalized_by'] = 'SerializationTestNormalizer';
    return $normalized;
  }
  
  /**
   * {@inheritdoc}
   */
  public function supportsNormalization($data, ?string $format = NULL, array $context = []) : bool {
    return static::$format === $format;
  }
  
  /**
   * {@inheritdoc}
   */
  public function getSupportedTypes(?string $format) : array {
    return [
      \stdClass::class => TRUE,
    ];
  }

}

Classes

Title Deprecated Summary
SerializationTestNormalizer

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.