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.

Code Duplication    Length = 13-15 lines in 2 locations

src/CommandBus/Command/Repository/Contents/FileDeleteCommand.php 1 location

@@ 44-56 (lines=13) @@
41
     * @param string $sha
42
     * @param string $branch
43
     */
44
    public function __construct(
45
        string $repository,
46
        string $commitMessage,
47
        string $url,
48
        string $sha,
49
        string $branch = ''
50
    ) {
51
        $this->repository = $repository;
52
        $this->commitMessage = $commitMessage;
53
        $this->url = $url;
54
        $this->sha = $sha;
55
        $this->branch = $branch;
56
    }
57
58
    /**
59
     * @return string

src/CommandBus/Command/Repository/Contents/FileUploadCommand.php 1 location

@@ 51-65 (lines=15) @@
48
     * @param string                  $branch
49
     * @param ReadableStreamInterface $stream
50
     */
51
    public function __construct(
52
        string $repository,
53
        string $commitMessage,
54
        string $url,
55
        string $sha,
56
        string $branch,
57
        ReadableStreamInterface $stream
58
    ) {
59
        $this->repository = $repository;
60
        $this->commitMessage = $commitMessage;
61
        $this->url = $url;
62
        $this->sha = $sha;
63
        $this->branch = $branch;
64
        $this->stream = $stream;
65
    }
66
67
    /**
68
     * @return string