From 2f7b237c4c407f4d6afa03f1c8f5d90d553ca35f Mon Sep 17 00:00:00 2001 From: nobohan Date: Tue, 22 Feb 2022 11:08:38 +0100 Subject: [PATCH] PersonJsonNormalizer interface: remove functions --- .../Normalizer/PersonJsonNormalizerInterface.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Bundle/ChillPersonBundle/Serializer/Normalizer/PersonJsonNormalizerInterface.php b/src/Bundle/ChillPersonBundle/Serializer/Normalizer/PersonJsonNormalizerInterface.php index 10ffa04d1..fd41752a8 100644 --- a/src/Bundle/ChillPersonBundle/Serializer/Normalizer/PersonJsonNormalizerInterface.php +++ b/src/Bundle/ChillPersonBundle/Serializer/Normalizer/PersonJsonNormalizerInterface.php @@ -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; - }