You are here

interface DumperInterface in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/translation/Dumper/DumperInterface.php \Symfony\Component\Translation\Dumper\DumperInterface
  2. 8 vendor/symfony/dependency-injection/Dumper/DumperInterface.php \Symfony\Component\DependencyInjection\Dumper\DumperInterface
  3. 8 vendor/symfony/dependency-injection/LazyProxy/PhpDumper/DumperInterface.php \Symfony\Component\DependencyInjection\LazyProxy\PhpDumper\DumperInterface
Same name and namespace in other branches
  1. 8.0 vendor/symfony/translation/Dumper/DumperInterface.php \Symfony\Component\Translation\Dumper\DumperInterface

DumperInterface is the interface implemented by all translation dumpers. There is no common option.

@author Michel Salib <michelsalib@hotmail.com>

Hierarchy

Expanded class hierarchy of DumperInterface

All classes that implement DumperInterface

1 file declares its use of DumperInterface
TranslationWriter.php in vendor/symfony/translation/Writer/TranslationWriter.php

File

vendor/symfony/translation/Dumper/DumperInterface.php, line 22

Namespace

Symfony\Component\Translation\Dumper
View source
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());

}

Members

Namesort descending Modifiers Type Description Overrides
DumperInterface::dump public function Dumps the message catalogue. 6