* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ /** * Defines the interface of encoders * * @author Jordi Boggiano */ interface SerializerAwareInterface { /** * Sets the owning Serializer object * * @param SerializerInterface $serializer * @api */ function setSerializer(SerializerInterface $serializer); }