<?php
namespace GettextGenerators;
use GettextTranslations;
class Jed extends Generator implements GeneratorInterface
{
/**
* {@parentDoc}
*/
public static function toString(Translations $translations)
{
$array = PhpArray::toArray($translations);
return json_encode($array);
}
}