[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
1 changed files with 1 additions and 1 deletions

View File

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