1 | <?php |
||
8 | class SimpleGoogleTranslator implements TranslatorInterface |
||
9 | { |
||
10 | protected $translator; |
||
11 | protected $source; |
||
12 | protected $target; |
||
13 | |||
14 | 18 | public function __construct() |
|
18 | |||
19 | 18 | public function setSource(string $source) |
|
27 | |||
28 | public function setTarget(string $target) |
||
36 | |||
37 | public function translate(string $string) : string |
||
49 | } |
||
50 |