Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
31 | public function handle(CompareCommitsCommand $command): PromiseInterface |
||
32 | { |
||
33 | return $this->service->fetch( |
||
34 | 'repos/' . $command->getRepository()->fullName() . '/compare/' . $command->getBase() . '...' . $command->getHead(), |
||
35 | '', |
||
36 | CompareInterface::HYDRATE_CLASS |
||
37 | ); |
||
38 | } |
||
39 | } |
||
40 |