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

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

@@ 510-516 (lines=7) @@
507
        return $this;
508
    }
509
510
    protected function getRootAttributes()
511
    {
512
        $isMockPayment = $this->getIsMockPayment();
513
        return !is_null($isMockPayment)
514
            ? ['isMockPayment' => $this->convertBooleanToString($isMockPayment)]
515
            : [];
516
    }
517
518
    protected function getRootNodeName()
519
    {

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

@@ 136-142 (lines=7) @@
133
        return $this;
134
    }
135
136
    protected function getRootAttributes()
137
    {
138
        $isMockPayment = $this->getIsMockPayment();
139
        return !is_null($isMockPayment)
140
            ? ['isMockPayment' => $this->convertBooleanToString($isMockPayment)]
141
            : [];
142
    }
143
144
    protected function getRootNodeName()
145
    {