forked from GithubBackups/tinyib
14 lines
283 B
PHP
14 lines
283 B
PHP
<?php
|
|
declare(strict_types = 1);
|
|
|
|
namespace Gettext\Generator;
|
|
|
|
use Gettext\Translations;
|
|
|
|
interface GeneratorInterface
|
|
{
|
|
public function generateFile(Translations $translations, string $filename): bool;
|
|
|
|
public function generateString(Translations $translations): string;
|
|
}
|