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

src/eBayEnterprise/RetailOrderManagement/Payload/Order/Customization.php 1 location

@@ 196-203 (lines=8) @@
193
        return null;
194
    }
195
196
    protected function serializeContents()
197
    {
198
        return $this->serializeOptionalXmlEncodedValue('CustomizationId', $this->getCustomizationId())
199
            . $this->getCustomizationInstructions()->serialize()
200
            . (!is_null($this->getExtendedPrice()) ? $this->getExtendedPrice()->setRootNodeName('ExtendedPrice')->serialize() : '')
201
            . "<ItemId>{$this->xmlEncode($this->getItemId())}</ItemId>"
202
            . $this->serializeCustomizedItem();
203
    }
204
205
    /**
206
     * When a customized item id has been provided, return a serialization

src/eBayEnterprise/RetailOrderManagement/Payload/TaxDutyFee/AbstractCustomization.php 1 location

@@ 73-79 (lines=7) @@
70
     */
71
    abstract public function getUpCharge();
72
73
    protected function serializeContents()
74
    {
75
        return $this->serializeOptionalXmlEncodedValue('CustomizationId', $this->getCustomizationId())
76
            . $this->serializeOptionalXmlEncodedValue('ItemId', $this->getItemId())
77
            . $this->serializeOptionalXmlEncodedValue('ItemDesc', $this->getItemDescription())
78
            . (!is_null($this->getUpCharge()) ? $this->getUpCharge()->setRootNodeName('Upcharge')->serialize() : '');
79
    }
80
81
    protected function deserializeExtra($serializedPayload)
82
    {