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

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