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 = 12-13 lines in 5 locations

src/DropboxAdapter.php 5 locations

@@ 78-90 (lines=13) @@
75
    /**
76
     * {@inheritdoc}
77
     */
78
    public function copy($path, $newpath): bool
79
    {
80
        $path = $this->applyPathPrefix($path);
81
        $newpath = $this->applyPathPrefix($newpath);
82
83
        try {
84
            $this->client->copy($path, $newpath);
85
        } catch (BadRequest $e) {
86
            return false;
87
        }
88
89
        return true;
90
    }
91
92
    /**
93
     * {@inheritdoc}
@@ 119-130 (lines=12) @@
116
    /**
117
     * {@inheritdoc}
118
     */
119
    public function createDir($dirname, Config $config)
120
    {
121
        $path = $this->applyPathPrefix($dirname);
122
123
        try {
124
            $object = $this->client->createFolder($path);
125
        } catch (BadRequest $e) {
126
            return false;
127
        }
128
129
        return $this->normalizeResponse($object);
130
    }
131
132
    /**
133
     * {@inheritdoc}
@@ 159-170 (lines=12) @@
156
    /**
157
     * {@inheritdoc}
158
     */
159
    public function readStream($path)
160
    {
161
        $path = $this->applyPathPrefix($path);
162
163
        try {
164
            $stream = $this->client->download($path);
165
        } catch (BadRequest $e) {
166
            return false;
167
        }
168
169
        return compact('stream');
170
    }
171
172
    /**
173
     * {@inheritdoc}
@@ 206-217 (lines=12) @@
203
    /**
204
     * {@inheritdoc}
205
     */
206
    public function getMetadata($path)
207
    {
208
        $path = $this->applyPathPrefix($path);
209
210
        try {
211
            $object = $this->client->getMetadata($path);
212
        } catch (BadRequest $e) {
213
            return false;
214
        }
215
216
        return $this->normalizeResponse($object);
217
    }
218
219
    /**
220
     * {@inheritdoc}
@@ 275-286 (lines=12) @@
272
     *
273
     * @return array|false file metadata
274
     */
275
    protected function upload(string $path, $contents, string $mode)
276
    {
277
        $path = $this->applyPathPrefix($path);
278
279
        try {
280
            $object = $this->client->upload($path, $contents, $mode);
281
        } catch (BadRequest $e) {
282
            return false;
283
        }
284
285
        return $this->normalizeResponse($object);
286
    }
287
288
    protected function normalizeResponse(array $response): array
289
    {