| 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 noop($original) |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @see TranslatorInterface |
||
| 20 | */ |
||
| 21 | public function register() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Include the gettext functions |
||
| 34 | */ |
||
| 35 | public static function includeFunctions() |
||
| 39 | } |
||
| 40 |