1 | <?php |
||
8 | class GoogleCloudTranslator implements TranslatorInterface |
||
9 | { |
||
10 | protected $translator; |
||
11 | protected $source; |
||
12 | protected $target; |
||
13 | |||
14 | public function __construct() |
||
21 | |||
22 | public function setSource(string $source) |
||
28 | |||
29 | public function setTarget(string $target) |
||
35 | |||
36 | public function translate(string $string) : string |
||
45 | } |
||
46 |