Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
32 | public function handle(CommunityHealthCommand $command): PromiseInterface |
||
33 | { |
||
34 | return $this->service->fetch( |
||
35 | 'repos/' . $command->getFullName() . '/community/profile', |
||
36 | '', |
||
37 | CommunityHealthInterface::HYDRATE_CLASS, |
||
38 | [ |
||
39 | TransportOptions::HEADERS => [ |
||
40 | 'Accept' => AcceptHeader::getHeader(AcceptHeader::PRESET_COMMUNITY_HEALTH), |
||
41 | ], |
||
42 | ] |
||
43 | ); |
||
44 | } |
||
45 | } |
||
46 |