Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 45b9ed9

Browse files
committed
fix parent class of AbstractNormalizer
We must maintain the parent class to not break BC.
1 parent 47cb0c3 commit 45b9ed9

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,8 @@
2525
*
2626
* @author Kévin Dunglas <[email protected]>
2727
*/
28-
abstract class AbstractNormalizer implements NormalizerInterface, DenormalizerInterface, SerializerAwareInterface
28+
abstract class AbstractNormalizer extends SerializerAwareNormalizer implements NormalizerInterface, DenormalizerInterface, SerializerAwareInterface
2929
{
30-
use SerializerAwareTrait;
31-
3230
const CIRCULAR_REFERENCE_LIMIT = 'circular_reference_limit';
3331
const OBJECT_TO_POPULATE = 'object_to_populate';
3432
const GROUPS = 'groups';

0 commit comments

Comments
 (0)