PhpFileDumper.php 792 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Translation\Dumper;
  11. use Symfony\Component\Translation\MessageCatalogue;
  12. /**
  13. * PhpFileDumper generates PHP files from a message catalogue.
  14. *
  15. * @author Michel Salib <michelsalib@hotmail.com>
  16. */
  17. class PhpFileDumper extends FileDumper
  18. {
  19. public function formatCatalogue(MessageCatalogue $messages, string $domain, array $options = []): string
  20. {
  21. return "<?php\n\nreturn ".var_export($messages->all($domain), true).";\n";
  22. }
  23. protected function getExtension(): string
  24. {
  25. return 'php';
  26. }
  27. }