| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 2 | public function execute(string $url) : IssueClientResponse |
|
| 23 | { |
||
| 24 | 2 | $response = $this->client->request('GET', $url); |
|
| 25 | |||
| 26 | 2 | $body = (string) $response->getBody(); |
|
| 27 | |||
| 28 | 2 | $body = json_decode($body, true); |
|
| 29 | |||
| 30 | 2 | return new IssueClientResponse($body, $this->getNextUrl($response)); |
|
| 31 | } |
||
| 48 |