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 = 9-9 lines in 2 locations

src/Client.php 2 locations

@@ 43-51 (lines=9) @@
40
     *
41
     * @link https://www.dropbox.com/developers/documentation/http/documentation#files-copy
42
     */
43
    public function copy(string $path, string $newPath): array
44
    {
45
        $parameters = [
46
            'from_path' => $this->normalizePath($path),
47
            'to_path' => $this->normalizePath($newPath),
48
        ];
49
50
        return $this->rpcEndpointRequest('files/copy', $parameters);
51
    }
52
53
    /**
54
     * Create a folder at a given path.Create a folder at a given path.
@@ 185-193 (lines=9) @@
182
     *
183
     * @link https://www.dropbox.com/developers/documentation/http/documentation#files-move
184
     */
185
    public function move(string $path, string $newPath): array
186
    {
187
        $parameters = [
188
            'from_path' => $this->normalizePath($path),
189
            'to_path' => $this->normalizePath($newPath),
190
        ];
191
192
        return $this->rpcEndpointRequest('files/move', $parameters);
193
    }
194
195
    /**
196
     * Create a new file with the contents provided in the request.