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 = 27-28 lines in 3 locations

src/Platform/Webservices/Connector.php 3 locations

@@ 290-317 (lines=28) @@
287
     * @link       https://webview.webservices.nl/documentation/files/service_address-php.html#Address.addressPerceelFullParameterSearch
288
     * @return \StdClass
289
     */
290
    public function addressPerceelFullParameterSearch(
291
        $province,
292
        $district,
293
        $city,
294
        $street,
295
        $houseNo,
296
        $houseNoAddition,
297
        $nbCode,
298
        $letterCombination,
299
        $addressType,
300
        $page
301
    ) {
302
        return $this->getAdapter()->call(
303
            'addressPerceelFullParameterSearch',
304
            [
305
                'province'          => $province,
306
                'district'          => $district,
307
                'city'              => $city,
308
                'street'            => $street,
309
                'houseNo'           => $houseNo,
310
                'houseNoAddition'   => $houseNoAddition,
311
                'nbcode'            => $nbCode,
312
                'lettercombination' => $letterCombination,
313
                'addresstype'       => $addressType,
314
                'page'              => $page,
315
            ]
316
        );
317
    }
318
319
    /**
320
     * Search for addresses in the <Perceel> format, using different search phrases for each address part.
@@ 339-366 (lines=28) @@
336
     *
337
     * @return \StdClass <PerceelSearchPartsPagedResult>.
338
     */
339
    public function addressPerceelFullParameterSearchV2(
340
        $province,
341
        $district,
342
        $city,
343
        $street,
344
        $houseNo,
345
        $houseNoAddition,
346
        $nbCode,
347
        $letterCombination,
348
        $addresstype,
349
        $page
350
    ) {
351
        return $this->getAdapter()->call(
352
            'addressPerceelFullParameterSearchV2',
353
            [
354
                'province'          => $province,
355
                'district'          => $district,
356
                'city'              => $city,
357
                'street'            => $street,
358
                'houseNo'           => $houseNo,
359
                'houseNoAddition'   => $houseNoAddition,
360
                'nbcode'            => $nbCode,
361
                'lettercombination' => $letterCombination,
362
                'addresstype'       => $addresstype,
363
                'page'              => $page,
364
            ]
365
        );
366
    }
367
368
    /**
369
     * Search for addresses in the <Perceel> format, using different search phrases for each address part.
@@ 531-557 (lines=27) @@
528
     *
529
     * @return \StdClass PCReeksSearchPartsPagedResult
530
     */
531
    public function addressReeksFullParameterSearch(
532
        $province,
533
        $district,
534
        $city,
535
        $street,
536
        $houseNo,
537
        $houseNoAddition,
538
        $nbCode,
539
        $letterCombination,
540
        $addressType,
541
        $page
542
    ) {
543
        return $this->getAdapter()->call(
544
            'addressReeksFullParameterSearch',
545
            [
546
                'province'          => $province,
547
                'district'          => $district,
548
                'city'              => $city,
549
                'street'            => $street,
550
                'houseNo'           => $houseNo,
551
                'houseNoAddition'   => $houseNoAddition,
552
                'nbcode'            => $nbCode,
553
                'lettercombination' => $letterCombination,
554
                'addresstype'       => $addressType,
555
                'page'              => $page,
556
            ]
557
        );
558
    }
559
560
    /**