[Serializer] fix return type declarations

This commit is contained in:
Alexander M. Turek 2019-08-23 23:48:06 +02:00 committed by Nicolas Grekas
parent 70feaa407e
commit 5072cfc7f8

View File

@ -36,7 +36,7 @@ interface SerializerInterface
* @param string $type * @param string $type
* @param string $format * @param string $format
* *
* @return object * @return object|array
*/ */
public function deserialize($data, $type, $format, array $context = []); public function deserialize($data, $type, $format, array $context = []);
} }