/opt/alt/php55/usr/share/pear/Symfony/Component/Translation/Dumper
NameSizeModeActions
CsvFileDumper.php14850644editdlrm
DumperInterface.php8100644editdlrm
FileDumper.php18830644editdlrm
IcuResFileDumper.php37290644editdlrm
IniFileDumper.php9840644editdlrm
JsonFileDumper.php8930644editdlrm
MoFileDumper.php23690644editdlrm
PhpFileDumper.php8440644editdlrm
PoFileDumper.php15380644editdlrm
QtFileDumper.php13510644editdlrm
XliffFileDumper.php19760644editdlrm
YamlFileDumper.php8220644editdlrm
Edit: /opt/alt/php55/usr/share/pear/Symfony/Component/Translation/Dumper/DumperInterface.php (810B)
* * 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 MessageCatalogue $messages The message catalogue * @param array $options Options that are used by the dumper */ public function dump(MessageCatalogue $messages, $options = array()); }