10000 minor #50824 [ErrorHandler] Do not use ContextAwareNormalizerInterfac… · symfony/symfony@660b35a · GitHub
[go: up one dir, main page]

Skip to content

Commit 660b35a

Browse files
minor #50824 [ErrorHandler] Do not use ContextAwareNormalizerInterface anymore (lyrixx)
This PR was merged into the 6.4 branch. Discussion ---------- [ErrorHandler] Do not use ContextAwareNormalizerInterface anymore | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | | License | MIT | Doc PR | It's a deprecated feature + #50736 Commits ------- 133171b [ErrorHandler] Do not use ContextAwareNormalizerInterface anymore
2 parents b6d1751 + 133171b commit 660b35a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Messenger/Transport/Serialization/Normalizer/FlattenExceptionNormalizer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313

1414
use Symfony\Component\ErrorHandler\Exception\FlattenException;
1515
use Symfony\Component\Messenger\Transport\Serialization\Serializer;
16-
use Symfony\Component\Serializer\Normalizer\ContextAwareNormalizerInterface;
1716
use Symfony\Component\Serializer\Normalizer\DenormalizerInterface;
1817
use Symfony\Component\Serializer\Normalizer\NormalizerAwareTrait;
18+
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
1919

2020
/**
2121
* This normalizer is only used in Debug/Dev/Messenger contexts.
2222
*
2323
* @author Pascal Luna <skalpa@zetareticuli.org>
2424
*/
25-
final class FlattenExceptionNormalizer implements DenormalizerInterface, ContextAwareNormalizerInterface
25+
final class FlattenExceptionNormalizer implements DenormalizerInterface, NormalizerInterface
2626
{
2727
use NormalizerAwareTrait;
2828

0 commit comments

Comments
 (0)
0