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\Encoder; Chris@0: Chris@0: /** Chris@0: * Defines the interface of encoders that will normalize data themselves. Chris@0: * Chris@0: * Implementing this interface essentially just tells the Serializer that the Chris@0: * data should not be pre-normalized before being passed to this Encoder. Chris@0: * Chris@0: * @author Jordi Boggiano Chris@0: */ Chris@0: interface NormalizationAwareInterface Chris@0: { Chris@0: }