| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class Tone extends AbstractApi |
||
| 14 | { |
||
| 15 | const API_ENDPOINT = '/tone'; |
||
| 16 | const PARAM_TEXT = 'text'; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param string $text Text to analyze. |
||
| 20 | * @param array $params Query parameters. |
||
| 21 | * |
||
| 22 | * @return mixed |
||
| 23 | * @throws \Http\Client\Exception |
||
| 24 | */ |
||
| 25 | public function analyze(string $text, array $params = []) |
||
| 38 |