Skip to content

Commit df793d8

Browse files
minor symfony#52480 [Serializer] Fix @method annotation (OskarStark)
This PR was merged into the 6.3 branch. Discussion ---------- [Serializer] Fix ``@method`` annotation | Q | A | ------------- | --- | Branch? | 6.3 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | Fix symfony#52477 | License | MIT cc `@darthf1` Commits ------- 9c611eb [Serializer] Fix ``@method`` annotation
2 parents c752607 + 9c611eb commit df793d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* @author Jordi Boggiano <j.boggiano@seld.be>
2424
*
25-
* @method getSupportedTypes(?string $format): array
25+
* @method array getSupportedTypes(?string $format)
2626
*/
2727
interface DenormalizerInterface
2828
{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* @author Jordi Boggiano <j.boggiano@seld.be>
2121
*
22-
* @method getSupportedTypes(?string $format): array
22+
* @method array getSupportedTypes(?string $format)
2323
*/
2424
interface NormalizerInterface
2525
{

0 commit comments

Comments
 (0)