You are here

public function CslReferenceNormalizer::supportsDenormalization in Bibliography & Citation 8

Same name and namespace in other branches
  1. 2.0.x modules/bibcite_entity/src/Normalizer/CslReferenceNormalizer.php \Drupal\bibcite_entity\Normalizer\CslReferenceNormalizer::supportsDenormalization()

Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization()

This class doesn't implement DenormalizerInterface, but most of its child classes do. Therefore, this method is implemented at this level to reduce code duplication.

Overrides NormalizerBase::supportsDenormalization

File

modules/bibcite_entity/src/Normalizer/CslReferenceNormalizer.php, line 28

Class

CslReferenceNormalizer
Normalizes/denormalizes reference entity to CSL format.

Namespace

Drupal\bibcite_entity\Normalizer

Code

public function supportsDenormalization($data, $type, $format = NULL) {
  return FALSE;
}