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\Translation\Dumper; Chris@0: Chris@0: use Symfony\Component\Translation\MessageCatalogue; Chris@0: Chris@0: /** Chris@0: * DumperInterface is the interface implemented by all translation dumpers. Chris@0: * There is no common option. Chris@0: * Chris@0: * @author Michel Salib Chris@0: */ Chris@0: interface DumperInterface Chris@0: { Chris@0: /** Chris@0: * Dumps the message catalogue. Chris@0: * Chris@0: * @param MessageCatalogue $messages The message catalogue Chris@0: * @param array $options Options that are used by the dumper Chris@0: */ Chris@17: public function dump(MessageCatalogue $messages, $options = []); Chris@0: }