mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-09-30 05:09:00 +02:00
9 lines
109 B
PHP
9 lines
109 B
PHP
<?php
|
|
|
|
namespace ipl\Translation;
|
|
|
|
interface TranslatorInterface
|
|
{
|
|
public function translate($string);
|
|
}
|