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}
@@ 195-206 (lines=12) @@
192
    /**
193
     * {@inheritdoc}
194
     */
195
    public function getMetadata($path)
196
    {
197
        $path = $this->applyPathPrefix($path);
198
199
        try {
200
            $object = $this->client->getMetadata($path);
201
        } catch (BadRequest $e) {
202
            return false;
203
        }
204
205
        return $this->normalizeResponse($object);
206
    }
207
208
    /**
209
     * {@inheritdoc}
@@ 264-275 (lines=12) @@
261
     *
262
     * @return array|false file metadata
263
     */
264
    protected function upload(string $path, $contents, string $mode)
265
    {
266
        $path = $this->applyPathPrefix($path);
267
268
        try {
269
            $object = $this->client->upload($path, $contents, $mode);
270
        } catch (BadRequest $e) {
271
            return false;
272
        }
273
274
        return $this->normalizeResponse($object);
275
    }
276
277
    protected function normalizeResponse(array $response): array
278
    {