Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\Serializer\Normalizer; Chris@0: Chris@17: use Symfony\Component\Serializer\SerializerAwareInterface; Chris@0: use Symfony\Component\Serializer\SerializerAwareTrait; Chris@0: Chris@0: /** Chris@0: * SerializerAware Normalizer implementation. Chris@0: * Chris@0: * @author Jordi Boggiano Chris@0: * Chris@0: * @deprecated since version 3.1, to be removed in 4.0. Use the SerializerAwareTrait instead. Chris@0: */ Chris@0: abstract class SerializerAwareNormalizer implements SerializerAwareInterface Chris@0: { Chris@0: use SerializerAwareTrait; Chris@0: }