| 1 | <?php |
||
| 5 | abstract class BaseTranslator implements TranslatorInterface |
||
| 6 | { |
||
| 7 | /** @var TranslatorInterface */ |
||
| 8 | public static $current; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @see TranslatorInterface |
||
| 12 | */ |
||
| 13 | public function gettext_noop($original) |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @see TranslatorInterface |
||
| 20 | */ |
||
| 21 | public function register() |
||
| 31 | } |
||
| 32 |