You are here

abstract class TestNormalizerBase in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/serialization/tests/src/Unit/Normalizer/NormalizerBaseTest.php \Drupal\Tests\serialization\Unit\Normalizer\TestNormalizerBase
  2. 9 core/modules/serialization/tests/src/Unit/Normalizer/NormalizerBaseTest.php \Drupal\Tests\serialization\Unit\Normalizer\TestNormalizerBase

Test class for NormalizerBase.

Hierarchy

  • class \Drupal\serialization\Normalizer\NormalizerBase implements \Symfony\Component\Serializer\SerializerAwareInterface, \Symfony\Component\Serializer\Normalizer\CacheableSupportsMethodInterface, CacheableNormalizerInterface uses \Symfony\Component\Serializer\SerializerAwareTrait

Expanded class hierarchy of TestNormalizerBase

File

core/modules/serialization/tests/src/Unit/Normalizer/NormalizerBaseTest.php, line 69
Contains \Drupal\Tests\serialization\Unit\Normalizer\NormalizerBaseTest.

Namespace

Drupal\Tests\serialization\Unit\Normalizer
View source
abstract class TestNormalizerBase extends NormalizerBase {

  /**
   * Sets the protected supportedInterfaceOrClass property.
   *
   * @param string $supported_interface_or_class
   *   The class name to set.
   */
  public function setSupportedInterfaceOrClass($supported_interface_or_class) {
    $this->supportedInterfaceOrClass = $supported_interface_or_class;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CacheableNormalizerInterface::SERIALIZATION_CONTEXT_CACHEABILITY constant Name of key for bubbling cacheability metadata via serialization context.
NormalizerBase::$format protected property List of formats which supports (de-)normalization. 1
NormalizerBase::$supportedInterfaceOrClass protected property The interface or class that this Normalizer supports.
NormalizerBase::addCacheableDependency protected function Adds cacheability if applicable.
NormalizerBase::checkFormat protected function Checks if the provided format is supported by this normalizer. 1
NormalizerBase::hasCacheableSupportsMethod public function
NormalizerBase::supportsDenormalization public function Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization()
NormalizerBase::supportsNormalization public function
TestNormalizerBase::setSupportedInterfaceOrClass public function Sets the protected supportedInterfaceOrClass property.