/home/techb158/dev.balacoffee.com/vendor/symfony/translation/Dumper
NameSizeModeActions
CsvFileDumper.php13890644editdlrm
DumperInterface.php7630644editdlrm
FileDumper.php35490644editdlrm
IcuResFileDumper.php29020644editdlrm
IniFileDumper.php9500644editdlrm
JsonFileDumper.php8370644editdlrm
MoFileDumper.php22800644editdlrm
PhpFileDumper.php7920644editdlrm
PoFileDumper.php39870644editdlrm
QtFileDumper.php18840644editdlrm
XliffFileDumper.php90990644editdlrm
YamlFileDumper.php15370644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/symfony/translation/Dumper/DumperInterface.php (763B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Translation\Dumper; use Symfony\Component\Translation\MessageCatalogue; /** * DumperInterface is the interface implemented by all translation dumpers. * There is no common option. * * @author Michel Salib */ interface DumperInterface { /** * Dumps the message catalogue. * * @param array $options Options that are used by the dumper * * @return void */ public function dump(MessageCatalogue $messages, array $options = []); }