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}
@@ 223-234 (lines=12) @@
220
    /**
221
     * {@inheritdoc}
222
     */
223
    public function getMetadata($path)
224
    {
225
        $path = $this->applyPathPrefix($path);
226
227
        try {
228
            $object = $this->client->getMetadata($path);
229
        } catch (BadRequest $e) {
230
            return false;
231
        }
232
233
        return $this->normalizeResponse($object);
234
    }
235
236
    /**
237
     * {@inheritdoc}
@@ 292-303 (lines=12) @@
289
     *
290
     * @return array|false file metadata
291
     */
292
    protected function upload(string $path, $contents, string $mode)
293
    {
294
        $path = $this->applyPathPrefix($path);
295
296
        try {
297
            $object = $this->client->upload($path, $contents, $mode);
298
        } catch (BadRequest $e) {
299
            return false;
300
        }
301
302
        return $this->normalizeResponse($object);
303
    }
304
305
    protected function normalizeResponse(array $response): array
306
    {