blob: 43213097e34ffad4caa01686a397c3147a507acc [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Symfony\Component\Translation\Writer;
13
14use Symfony\Component\Translation\Exception\InvalidArgumentException;
15use Symfony\Component\Translation\MessageCatalogue;
16
17/**
18 * TranslationWriter writes translation messages.
19 *
20 * @author Michel Salib <michelsalib@hotmail.com>
21 */
22interface TranslationWriterInterface
23{
24 /**
25 * Writes translation from the catalogue according to the selected format.
26 *
27 * @param string $format The format to use to dump the messages
28 * @param array $options Options that are passed to the dumper
29 *
30 * @throws InvalidArgumentException
31 */
32 public function write(MessageCatalogue $catalogue, string $format, array $options = []);
33}