[Serializer] Fix DenormalizableInterface::denormalize() return type declaration in docblock

This commit is contained in:
Jeroen Noten 2020-12-18 14:21:55 +01:00 committed by GitHub
parent 54acc19659
commit 00c90aed51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,8 +33,6 @@ interface DenormalizableInterface
* @param string|null $format The format is optionally given to be able to denormalize * @param string|null $format The format is optionally given to be able to denormalize
* differently based on different input formats * differently based on different input formats
* @param array $context Options for denormalizing * @param array $context Options for denormalizing
*
* @return object|object[]
*/ */
public function denormalize(DenormalizerInterface $denormalizer, $data, $format = null, array $context = []); public function denormalize(DenormalizerInterface $denormalizer, $data, $format = null, array $context = []);
} }