Файл: concrete5.7.5.6/concrete/vendor/gettext/gettext/src/Generators/GeneratorInterface.php
Строк: 42
<?php
namespace GettextGenerators;
use GettextTranslations;
interface GeneratorInterface
{
/**
* Saves the translations in a file
*
* @param Translations $translations
* @param string $file
*
* @return boolean
*/
public static function toFile(Translations $translations, $file);
/**
* Generates a string with the translations ready to save in a file
*
* @param Translations $translations
*
* @return string
*/
public static function toString(Translations $translations);
}