You are here

class ConcreteFileDumper in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/translation/Tests/Dumper/FileDumperTest.php \Symfony\Component\Translation\Tests\Dumper\ConcreteFileDumper

Hierarchy

Expanded class hierarchy of ConcreteFileDumper

File

vendor/symfony/translation/Tests/Dumper/FileDumperTest.php, line 59

Namespace

Symfony\Component\Translation\Tests\Dumper
View source
class ConcreteFileDumper extends FileDumper {
  protected function format(MessageCatalogue $messages, $domain) {
    return '';
  }
  protected function getExtension() {
    return 'concrete';
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConcreteFileDumper::format protected function Transforms a domain of a message catalogue to its string representation. Overrides FileDumper::format
ConcreteFileDumper::getExtension protected function Gets the file extension of the dumper. Overrides FileDumper::getExtension
FileDumper::$backup private property Make file backup before the dump.
FileDumper::$relativePathTemplate protected property A template for the relative paths to files. 1
FileDumper::dump public function Dumps the message catalogue. Overrides DumperInterface::dump 1
FileDumper::getRelativePath private function Gets the relative file path using the template.
FileDumper::setBackup public function Sets backup flag.
FileDumper::setRelativePathTemplate public function Sets the template for the relative paths to files.