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

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

@@ 163-173 (lines=11) @@
160
        );
161
    }
162
163
    protected function getRootAttributes()
164
    {
165
        return [
166
            'xmlns' => $this->getXmlNamespace(),
167
            'storeId' => $this->getStoreId(),
168
            'customerOrderId' => $this->getCustomerOrderId(),
169
            'currency' => $this->getCurrencyCode(),
170
            'currencySymbol' => $this->getCurrencySymbol(),
171
            'orderAcceptedSource' => $this->getOrderAcceptedSource(),
172
        ];
173
    }
174
}
175

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

@@ 85-94 (lines=10) @@
82
        return static::ROOT_NODE;
83
    }
84
85
    protected function getRootAttributes()
86
    {
87
        return [
88
            'xmlns' => $this->getXmlNamespace(),
89
            'customerOrderId' => $this->getCustomerOrderId(),
90
            'storeId' => $this->getStoreId(),
91
            'currency' => $this->getCurrencyCode(),
92
            'currencySymbol' => $this->getCurrencySymbol(),
93
        ];
94
    }
95
96
    protected function getSchemaFile()
97
    {

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

@@ 142-151 (lines=10) @@
139
            $this->getCancelReason()
140
        );
141
    }
142
    protected function getRootAttributes()
143
    {
144
        return [
145
            'xmlns' => $this->getXmlNamespace(),
146
            'storeId' => $this->getStoreId(),
147
            'customerOrderId' => $this->getCustomerOrderId(),
148
            'currency' => $this->getCurrencyCode(),
149
            'currencySymbol' => $this->getCurrencySymbol(),
150
        ];
151
    }
152
}
153

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

@@ 177-186 (lines=10) @@
174
     * Name, value pairs of root attributes
175
     * @return array
176
     */
177
    protected function getRootAttributes()
178
    {
179
        return [
180
            'xmlns' => $this->getXmlNamespace(),
181
            'customerOrderId' => $this->getCustomerOrderId(),
182
            'storeId' => $this->getStoreId(),
183
            'currency' => $this->getCurrencyCode(),
184
            'currencySymbol' => $this->getCurrencySymbol(),
185
        ];
186
    }
187
}
188

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

@@ 85-94 (lines=10) @@
82
        ];
83
    }
84
85
    protected function getRootAttributes()
86
    {
87
        return [
88
            'xmlns' => $this->getXmlNamespace(),
89
            'customerOrderId' => $this->getCustomerOrderId(),
90
            'storeId' => $this->getStoreId(),
91
            'currency' => $this->getCurrencyCode(),
92
            'currencySymbol' => $this->getCurrencySymbol()
93
        ];
94
    }
95
96
    public function getEventType()
97
    {

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

@@ 104-113 (lines=10) @@
101
            . $this->getGiftCardActivations()->serialize();
102
    }
103
104
    protected function getRootAttributes()
105
    {
106
        return [
107
            'xmlns' => $this->getXmlNamespace(),
108
            'currency' => $this->getCurrencyCode(),
109
            'currencySymbol' => $this->getCurrencySymbol(),
110
            'customerOrderId' => $this->getCustomerOrderId(),
111
            'storeId' => $this->getStoreId(),
112
        ];
113
    }
114
}
115

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

@@ 81-90 (lines=10) @@
78
        return static::ROOT_NODE;
79
    }
80
81
    protected function getRootAttributes()
82
    {
83
        return [
84
            'xmlns' => $this->getXmlNamespace(),
85
            'customerOrderId' => $this->getCustomerOrderId(),
86
            'storeId' => $this->getStoreId(),
87
            'currency' => $this->getCurrencyCode(),
88
            'currencySymbol' => $this->getCurrencySymbol(),
89
        ];
90
    }
91
92
    protected function getSchemaFile()
93
    {

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

@@ 140-149 (lines=10) @@
137
        return $this;
138
    }
139
140
    protected function getRootAttributes()
141
    {
142
        return [
143
            'xmlns' => $this->getXmlNamespace(),
144
            'customerOrderId' => $this->getCustomerOrderId(),
145
            'storeId' => $this->getStoreId(),
146
            'currency' => $this->getCurrencyCode(),
147
            'currencySymbol' => $this->getCurrencySymbol(),
148
        ];
149
    }
150
151
    protected function getSchemaFile()
152
    {