The Response seems to not be valid JSON
jatniel opened this issue · 1 comments
jatniel commented
Error, two translations in each interaction of a foreach.
(Laravel Framework, PHP 8)
my function, for the translation:
public function translation($text)
{
$deepl = new DeepL($this->authKey,2,'api.deepl.com');
$translate = $deepl->translate($text, 'en', 'fr');
return $translate[0]['text'];
}