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 = 26-28 lines in 2 locations

src/Platform/Webservices/Connector.php 2 locations

@@ 2160-2185 (lines=26) @@
2157
     * @link https://webview.webservices.nl/documentation/files/service_edr-php.html#EDR.edrGetScore
2158
     * @return \StdClass <EDRScore>
2159
     */
2160
    public function edrGetScore(
2161
        $lastName,
2162
        $initials,
2163
        $surnamePrefix,
2164
        $gender,
2165
        $birthDate,
2166
        $street,
2167
        $houseNumber,
2168
        $postcode,
2169
        $phoneNumber
2170
    ) {
2171
        return $this->getAdapter()->call(
2172
            'edrGetScore',
2173
            [
2174
                'last_name'      => $lastName,
2175
                'initials'       => $initials,
2176
                'surname_prefix' => $surnamePrefix,
2177
                'gender'         => $gender,
2178
                'birth_date'     => $birthDate,
2179
                'street'         => $street,
2180
                'house_number'   => $houseNumber,
2181
                'postcode'       => $postcode,
2182
                'phone_number'   => $phoneNumber,
2183
            ]
2184
        );
2185
    }
2186
2187
    /**
2188
     * Returns the coordinates of the given address in degrees of latitude/longitude.
@@ 4153-4180 (lines=28) @@
4150
     *
4151
     * @return \StdClass
4152
     */
4153
    public function riskCheckGetRiskPersonCompanyReport(
4154
        $gender,
4155
        $initials,
4156
        $prefix,
4157
        $lastName,
4158
        $birthDate,
4159
        $street,
4160
        $houseNumber,
4161
        $houseNumberAddition,
4162
        $postcode,
4163
        $city
4164
    ) {
4165
        return $this->getAdapter()->call(
4166
            'riskCheckGetRiskPersonCompanyReport',
4167
            [
4168
                'gender'                => $gender,
4169
                'initials'              => $initials,
4170
                'prefix'                => $prefix,
4171
                'last_name'             => $lastName,
4172
                'birth_date'            => $birthDate,
4173
                'street'                => $street,
4174
                'house_number'          => $houseNumber,
4175
                'house_number_addition' => $houseNumberAddition,
4176
                'postcode'              => $postcode,
4177
                'city'                  => $city,
4178
            ]
4179
        );
4180
    }
4181
4182
    /**
4183
     * Returns a score indicating creditworthiness for a Dutch person, address and postcode area.