You are here

class ConcreteFileDumper in Plug 7

Hierarchy

Expanded class hierarchy of ConcreteFileDumper

File

lib/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::formatCatalogue protected function Transforms a domain of a message catalogue to its string representation. 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.