public function DenormalizerInterface::supportsDenormalization in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/serializer/Normalizer/DenormalizerInterface.php \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization()
Checks whether the given class is supported for denormalization by this normalizer.
Parameters
mixed $data Data to denormalize from.:
string $type The class to which the data should be denormalized.:
string $format The format being deserialized from.:
Return value
bool
6 methods override DenormalizerInterface::supportsDenormalization()
- CustomNormalizer::supportsDenormalization in vendor/
symfony/ serializer/ Normalizer/ CustomNormalizer.php - Checks if the given class implements the NormalizableInterface.
- GetSetMethodNormalizer::supportsDenormalization in vendor/
symfony/ serializer/ Normalizer/ GetSetMethodNormalizer.php - Checks whether the given class is supported for denormalization by this normalizer.
- ObjectNormalizer::supportsDenormalization in vendor/
symfony/ serializer/ Normalizer/ ObjectNormalizer.php - Checks whether the given class is supported for denormalization by this normalizer.
- PropertyNormalizer::supportsDenormalization in vendor/
symfony/ serializer/ Normalizer/ PropertyNormalizer.php - Checks whether the given class is supported for denormalization by this normalizer.
- Serializer::supportsDenormalization in vendor/
symfony/ serializer/ Serializer.php - Checks whether the given class is supported for denormalization by this normalizer.
File
- vendor/
symfony/ serializer/ Normalizer/ DenormalizerInterface.php, line 42
Class
- DenormalizerInterface
- Defines the interface of denormalizers.
Namespace
Symfony\Component\Serializer\NormalizerCode
public function supportsDenormalization($data, $type, $format = null);