|
@@ -3,6 +3,7 @@
|
|
namespace Symfony\Component\Serializer\Normalizer;
|
|
namespace Symfony\Component\Serializer\Normalizer;
|
|
|
|
|
|
use Symfony\Component\Serializer\SerializerInterface;
|
|
use Symfony\Component\Serializer\SerializerInterface;
|
|
|
|
+use Symfony\Component\Serializer\SerializerAwareInterface;
|
|
|
|
|
|
/*
|
|
/*
|
|
* This file is part of the Symfony framework.
|
|
* This file is part of the Symfony framework.
|
|
@@ -18,7 +19,7 @@ use Symfony\Component\Serializer\SerializerInterface;
|
|
*
|
|
*
|
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
|
* @author Jordi Boggiano <j.boggiano@seld.be>
|
|
*/
|
|
*/
|
|
-abstract class AbstractNormalizer implements NormalizerInterface
|
|
|
|
|
|
+abstract class AbstractNormalizer implements SerializerAwareInterface, NormalizerInterface
|
|
{
|
|
{
|
|
protected $serializer;
|
|
protected $serializer;
|
|
|
|
|