You are here

class ShipmentItemNormalizer in Commerce Shipping 8.2

Hierarchy

Expanded class hierarchy of ShipmentItemNormalizer

1 file declares its use of ShipmentItemNormalizer
CommerceShippingServiceProvider.php in src/CommerceShippingServiceProvider.php

File

src/Normalizer/ShipmentItemNormalizer.php, line 8

Namespace

Drupal\commerce_shipping\Normalizer
View source
class ShipmentItemNormalizer extends NormalizerBase {

  /**
   * {@inheritdoc}
   */
  protected $supportedInterfaceOrClass = ShipmentItemDataType::class;

  /**
   * {@inheritdoc}
   */
  public function normalize($object, $format = NULL, array $context = []) {
    assert($object instanceof ShipmentItemDataType);
    return $object
      ->toArray();
  }

}

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. 3
NormalizerBase::addCacheableDependency protected function Adds cacheability if applicable.
NormalizerBase::checkFormat protected function Checks if the provided format is supported by this normalizer. 2
NormalizerBase::supportsDenormalization public function Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() 1
NormalizerBase::supportsNormalization public function Checks whether the given class is supported for normalization by this normalizer. 1
ShipmentItemNormalizer::$supportedInterfaceOrClass protected property The interface or class that this Normalizer supports. Overrides NormalizerBase::$supportedInterfaceOrClass
ShipmentItemNormalizer::normalize public function Normalizes an object into a set of arrays/scalars.