public function CslReferenceNormalizer::supportsDenormalization in Bibliography & Citation 8
Same name and namespace in other branches
- 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\NormalizerCode
public function supportsDenormalization($data, $type, $format = NULL) {
return FALSE;
}