GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( f97c37...7f1b36 )
by Cees-Jan
10:16
created

RefHandler::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 5
Ratio 100 %

Importance

Changes 0
Metric Value
dl 5
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php declare(strict_types=1);
2
3
namespace ApiClients\Client\Github\CommandBus\Handler\Repository;
4
5
use ApiClients\Client\Github\CommandBus\Command\Repository\RefCommand;
6
use ApiClients\Client\Github\Resource\Git\RefInterface;
7
use ApiClients\Foundation\Hydrator\Hydrator;
8
use ApiClients\Foundation\Transport\Service\RequestService;
9
use ApiClients\Middleware\Json\JsonStream;
10
use React\Promise\PromiseInterface;
11
use RingCentral\Psr7\Request;
12
13 View Code Duplication
final class RefHandler
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
14
{
15
    /**
16
     * @var RequestService
17
     */
18
    private $requestService;
19
20
    /**
21
     * @var Hydrator
22
     */
23
    private $hydrator;
24
25
    /**
26
     * @param RequestService $requestService
27
     * @param Hydrator       $hydrator
28
     */
29
    public function __construct(RequestService $requestService, Hydrator $hydrator)
30
    {
31
        $this->requestService = $requestService;
32
        $this->hydrator = $hydrator;
33
    }
34
35
    /**
36
     * @param  RefCommand       $command
37
     * @return PromiseInterface
38
     */
39
    public function handle(RefCommand $command): PromiseInterface
40
    {
41
        return $this->requestService->request(
42
            new Request(
43
                'POST',
44
                'repos/' . $command->getRepository() . '/git/' . $command->getRef(),
45
                [],
46
                new JsonStream([
47
                    'sha' => $command->getCommit(),
48
                ])
49
            )
50
        )->then(function ($tree) {
51
            return $this->hydrator->hydrate(RefInterface::HYDRATE_CLASS, $tree->getBody()->getParsedContents());
52
        });
53
    }
54
}
55