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}
@@ 204-215 (lines=12) @@
201
    /**
202
     * {@inheritdoc}
203
     */
204
    public function getMetadata($path)
205
    {
206
        $path = $this->applyPathPrefix($path);
207
208
        try {
209
            $object = $this->client->getMetadata($path);
210
        } catch (BadRequest $e) {
211
            return false;
212
        }
213
214
        return $this->normalizeResponse($object);
215
    }
216
217
    /**
218
     * {@inheritdoc}
@@ 273-284 (lines=12) @@
270
     *
271
     * @return array|false file metadata
272
     */
273
    protected function upload(string $path, $contents, string $mode)
274
    {
275
        $path = $this->applyPathPrefix($path);
276
277
        try {
278
            $object = $this->client->upload($path, $contents, $mode);
279
        } catch (BadRequest $e) {
280
            return false;
281
        }
282
283
        return $this->normalizeResponse($object);
284
    }
285
286
    protected function normalizeResponse(array $response): array
287
    {