[Serializer] Implement SerializerAwareInterface

This commit is contained in:
Jordi Boggiano 2011-05-08 17:53:37 +02:00
parent 8263b09b5c
commit 01a104916b

View File

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