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 = 13-22 lines in 2 locations

src/Platform/Webservices/Connector.php 2 locations

@@ 382-403 (lines=22) @@
379
     * @deprecated please use addressPerceelFullParameterSearchV2
380
     * @return \StdClass
381
     */
382
    public function addressPerceelParameterSearch(
383
        $province,
384
        $district,
385
        $city,
386
        $street,
387
        $houseNo,
388
        $houseNoAddition,
389
        $page
390
    ) {
391
        return $this->getAdapter()->call(
392
            'addressPerceelParameterSearch',
393
            [
394
                'province'        => $province,
395
                'district'        => $district,
396
                'city'            => $city,
397
                'street'          => $street,
398
                'houseNo'         => $houseNo,
399
                'houseNoAddition' => $houseNoAddition,
400
                'page'            => $page,
401
            ]
402
        );
403
    }
404
405
    /**
406
     * Search for addresses in the <Perceel> format, using a single search phrase.
@@ 575-587 (lines=13) @@
572
     *
573
     * @return \StdClass PCReeksSearchPartsPagedResult
574
     */
575
    public function addressReeksParameterSearch($province, $district, $city, $street, $houseNo, $houseNoAddition, $page)
576
    {
577
        return $this->getAdapter()->call(
578
            'addressReeksParameterSearch',
579
            [
580
                'province'        => $province,
581
                'district'        => $district,
582
                'city'            => $city,
583
                'street'          => $street,
584
                'houseNo'         => $houseNo,
585
                'houseNoAddition' => $houseNoAddition,
586
                'page'            => $page,
587
            ]
588
        );
589
    }
590