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

src/eBayEnterprise/RetailOrderManagement/Payload/OrderEvents/OrderRejected.php 1 location

@@ 193-196 (lines=4) @@
190
    {
191
        $this->schemaValidate($string);
192
        $xpath = $this->getPayloadAsXPath($string);
193
        foreach ($this->extractionPaths as $property => $path) {
194
            $value = $xpath->evaluate($path);
195
            $this->$property = ($property === self::PROPERTY_ORDER_CREATE_TIMESTAMP) ? new DateTime($value) : $value;
196
        }
197
        return $this;
198
    }
199

src/eBayEnterprise/RetailOrderManagement/Payload/TPayload.php 1 location

@@ 218-221 (lines=4) @@
215
     */
216
    protected function deserializeDatetime(\DOMXPath $xpath)
217
    {
218
        foreach ($this->datetimeExtractionPaths as $property => $path) {
219
            $value = $xpath->evaluate($path);
220
            $this->$property = $value ? new DateTime($value) : null;
221
        }
222
223
        return $this;
224
    }