Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsjet-saas/Source/vendor/gettext/gettext/src/Generator/
Upload File :
Current File : /home/users/unlimited/www/whatsjet-saas/Source/vendor/gettext/gettext/src/Generator/Generator.php

<?php
declare(strict_types = 1);

namespace Gettext\Generator;

use Gettext\Translations;

abstract class Generator implements GeneratorInterface
{
    public function generateFile(Translations $translations, string $filename): bool
    {
        $content = $this->generateString($translations);

        return file_put_contents($filename, $content) !== false;
    }

    abstract public function generateString(Translations $translations): string;
}