| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function execute() |
||
| 17 | { |
||
| 18 | $path = 'supported-languages'; |
||
| 19 | |||
| 20 | if (!empty($this->urlParameters)) { |
||
| 21 | $path .= sprintf('?%s', $this->getUrlQueryString()); |
||
| 22 | } |
||
| 23 | |||
| 24 | $http = $this->client->getHttpClient(); |
||
| 25 | $response = $http->get($path); |
||
| 26 | |||
| 27 | return $response->getBody(); |
||
| 28 | } |
||
| 29 | } |
||
| 30 |