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

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