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) |
||
14 | { |
||
15 | return $original; |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * @see TranslatorInterface |
||
20 | */ |
||
21 | public function register() |
||
31 | } |
||
32 |