Slide 12
Slide 12 text
interface DenormalizerInterface
{
public function denormalize($data, string $type, string $format = null, array
$context = []);
public function supportsDenormalization($data, string $type, string $format =
null);
}
interface DecoderInterface
{
public function decode(string $data, string $format, array $context = []);
public function supportsDecoding(string $format);
}