@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | if ((int) $translateResponse['errorCode'] === 0) { |
86 | 86 | return $this->getTranslatedTextFromResponse($translateResponse); |
87 | 87 | } |
88 | - throw new TranslationErrorException('Translate error, error_code : '.$translateResponse['errorCode'].'. Refer url: http://ai.youdao.com/docs/api.s'); |
|
88 | + throw new TranslationErrorException('Translate error, error_code : ' . $translateResponse['errorCode'] . '. Refer url: http://ai.youdao.com/docs/api.s'); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | /** |
@@ -107,12 +107,12 @@ discard block |
||
107 | 107 | { |
108 | 108 | $salt = md5(time()); |
109 | 109 | $query = [ |
110 | - 'sign' => md5($this->config['appKey'].$text.$salt.$this->config['appSecret']), |
|
110 | + 'sign' => md5($this->config['appKey'] . $text . $salt . $this->config['appSecret']), |
|
111 | 111 | 'appKey' => $this->config['appKey'], |
112 | 112 | 'salt' => $salt, |
113 | 113 | ]; |
114 | 114 | |
115 | - return $this->api.http_build_query($query).'&q='.urlencode($text); |
|
115 | + return $this->api . http_build_query($query) . '&q=' . urlencode($text); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |