| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 31 | public function handle(LanguagesCommand $command): PromiseInterface |
||
| 32 | { |
||
| 33 | return $this->requestService->request( |
||
| 34 | new Request('GET', 'repos/' . $command->getFullName() . '/languages') |
||
| 35 | )->then(function ($response) { |
||
| 36 | return resolve($response->getBody()->getJson()); |
||
| 37 | }); |
||
| 38 | } |
||
| 39 | } |
||
| 40 |