2017-07-14 13:21:42 +02:00

9 lines
109 B
PHP

<?php
namespace ipl\Translation;
interface TranslatorInterface
{
public function translate($string);
}