PersonJsonNormalizer interface: remove functions

This commit is contained in:
nobohan 2022-02-22 11:08:38 +01:00
parent 665027085d
commit 2f7b237c4c

View File

@ -21,12 +21,4 @@ interface PersonJsonNormalizerInterface extends
DenormalizerInterface,
NormalizerInterface
{
public function denormalize($data, $type, $format = null, array $context = []);
public function normalize($person, $format = null, array $context = []);
public function supportsDenormalization($data, $type, $format = null);
public function supportsNormalization($data, $format = null): bool;
}