| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 1 | public function spellCheck(string $text, array $languages, array $options): array |
|
| 20 | { |
||
| 21 | 1 | $options['text'] = $text; |
|
| 22 | 1 | $options['language'] = array_shift($languages); |
|
| 23 | 1 | $options['altLanguages'] = implode(',', $languages); |
|
| 24 | |||
| 25 | 1 | return $this->requestAPI( |
|
| 26 | 1 | '/v2/check', |
|
| 27 | 1 | 'POST', |
|
| 28 | 1 | 'Content-type: application/x-www-form-urlencoded; Accept: application/json', |
|
| 29 | 1 | $options |
|
| 30 | ); |
||
| 64 |