1 | <?php |
||
8 | class SimpleGoogleTranslator implements TranslatorInterface |
||
9 | { |
||
10 | protected $translator; |
||
11 | protected $source; |
||
12 | protected $target; |
||
13 | |||
14 | 18 | public function __construct() |
|
24 | |||
25 | 18 | public function setSource(string $source) |
|
33 | |||
34 | public function setTarget(string $target) |
||
42 | |||
43 | public function translate(string $string) : string |
||
57 | } |
||
58 |