* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Serializer\Normalizer; /** * Class accepting a normalizer. * * @author Joel Wurtz */ interface NormalizerAwareInterface { /** * Sets the owning Normalizer object. * * @param NormalizerInterface $normalizer */ public function setNormalizer(NormalizerInterface $normalizer); }