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

tests/Api/UsersModuleTest.php 5 locations

@@ 217-230 (lines=14) @@
214
        );
215
    }
216
217
    public function testDeleteTotpSecret()
218
    {
219
        $this->assertTrue(
220
            $this->makeRequest(
221
                ['vpn-admin-portal', 'bbccdd'],
222
                'POST',
223
                'delete_totp_secret',
224
                [],
225
                [
226
                    'user_id' => 'bar',
227
                ]
228
            )
229
        );
230
    }
231
232
    public function testSetVootToken()
233
    {
@@ 248-261 (lines=14) @@
245
        );
246
    }
247
248
    public function testDeleteVootToken()
249
    {
250
        $this->assertTrue(
251
            $this->makeRequest(
252
                ['vpn-admin-portal', 'bbccdd'],
253
                'POST',
254
                'delete_voot_token',
255
                [],
256
                [
257
                    'user_id' => 'bar',
258
                ]
259
            )
260
        );
261
    }
262
263
    public function testDisableUser()
264
    {
@@ 263-276 (lines=14) @@
260
        );
261
    }
262
263
    public function testDisableUser()
264
    {
265
        $this->assertTrue(
266
            $this->makeRequest(
267
                ['vpn-admin-portal', 'bbccdd'],
268
                'POST',
269
                'disable_user',
270
                [],
271
                [
272
                    'user_id' => 'foo',
273
                ]
274
            )
275
        );
276
    }
277
278
    public function testEnableUser()
279
    {
@@ 278-291 (lines=14) @@
275
        );
276
    }
277
278
    public function testEnableUser()
279
    {
280
        $this->assertTrue(
281
            $this->makeRequest(
282
                ['vpn-admin-portal', 'bbccdd'],
283
                'POST',
284
                'enable_user',
285
                [],
286
                [
287
                    'user_id' => 'bar',
288
                ]
289
            )
290
        );
291
    }
292
293
    public function testDeleteUser()
294
    {
@@ 293-306 (lines=14) @@
290
        );
291
    }
292
293
    public function testDeleteUser()
294
    {
295
        $this->assertTrue(
296
            $this->makeRequest(
297
                ['vpn-admin-portal', 'bbccdd'],
298
                'POST',
299
                'delete_user',
300
                [],
301
                [
302
                    'user_id' => 'foo',
303
                ]
304
            )
305
        );
306
    }
307
308
    public function testUserGroups()
309
    {