Skip to content

Commit 0886863

Browse files
committed
Fix missing return type
1 parent cedfa9c commit 0886863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Serializer/Normalizer/DenormalizerInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ interface DenormalizerInterface
4646
* @throws RuntimeException Occurs if the class cannot be instantiated
4747
* @throws ExceptionInterface Occurs for all the other cases of errors
4848
*/
49-
public function denormalize(mixed $data, string $type, string $format = null, array $context = []);
49+
public function denormalize(mixed $data, string $type, string $format = null, array $context = []): mixed;
5050

5151
/**
5252
* Returns a matching denormalizer.

0 commit comments

Comments
 (0)