/
www
/
wwwroot
/
alo88.autos
/
wp-content
/
plugins
/
wp-content-crawler
/
app
/
vendor
/
deeplcom
/
deepl-php
/
src
/
Upload File
HOME
<?php // Copyright 2022 DeepL SE (https://www.deepl.com) // Use of this source code is governed by an MIT // license that can be found in the LICENSE file. namespace DeepL; /** * Information about a glossary language supported by DeepL translator. */ class GlossaryLanguagePair { /** * @var string Language code of the language that glossary source terms are expressed in. * @see LanguageCode */ public $sourceLang; /** * @var string Language code of the language that glossary target terms are expressed in. Note that unlike the * target language argument for translation functions, glossary target languages do not include regional variants. * @see LanguageCode */ public $targetLang; public function __construct(string $sourceLang, string $targetLang) { $this->sourceLang = $sourceLang; $this->targetLang = $targetLang; } public function __toString(): string { return "$this->sourceLang->$this->targetLang"; } }