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

@@ 48-56 (lines=9) @@
45
     *
46
     * @link https://www.dropbox.com/developers/documentation/http/documentation#files-copy
47
     */
48
    public function copy(string $fromPath, string $toPath): array
49
    {
50
        $parameters = [
51
            'from_path' => $this->normalizePath($fromPath),
52
            'to_path' => $this->normalizePath($toPath),
53
        ];
54
55
        return $this->rpcEndpointRequest('files/copy', $parameters);
56
    }
57
58
    /**
59
     * Create a folder at a given path.
@@ 254-262 (lines=9) @@
251
     *
252
     * @link https://www.dropbox.com/developers/documentation/http/documentation#files-move
253
     */
254
    public function move(string $fromPath, string $toPath): array
255
    {
256
        $parameters = [
257
            'from_path' => $this->normalizePath($fromPath),
258
            'to_path' => $this->normalizePath($toPath),
259
        ];
260
261
        return $this->rpcEndpointRequest('files/move', $parameters);
262
    }
263
264
    /**
265
     * Create a new file with the contents provided in the request.