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

src/app/code/community/EbayEnterprise/Eb2cCore/Test/Model/SessionTest.php 1 location

@@ 692-700 (lines=9) @@
689
     * and/or details being flagged to be updated.
690
     * @return array Args array of booleans for which flags should be set
691
     */
692
    public function providerUpdateWithQuote()
693
    {
694
        return [
695
            //    currFlag newFlag
696
            [true,    false],
697
            [false,   true],
698
            [false,   false],
699
        ];
700
    }
701
    /**
702
     * Test updating the quote data stored in the session with a new quote. Method should
703
     * extract data from the new quote (using appropriate methods), and then compare it to

src/app/code/community/EbayEnterprise/Order/Test/Controller/GuestControllerTest.php 1 location

@@ 125-132 (lines=8) @@
122
    /**
123
     * @return array
124
     */
125
    public function providerViewAction()
126
    {
127
        return [
128
            [false, true],
129
            [false, false],
130
            [true, true],
131
        ];
132
    }
133
134
    /**
135
     * Test that the controller method EbayEnterprise_Order_GuestController::_viewAction()

src/app/code/community/EbayEnterprise/Order/Test/Controller/OrderControllerTest.php 1 location

@@ 706-712 (lines=7) @@
703
    /**
704
     * @return array
705
     */
706
    public function providerCanShowOrderCancelForm()
707
    {
708
        return [
709
            [true, true, false],
710
            [false, true, true],
711
        ];
712
    }
713
714
    /**
715
     * Test that the controller method EbayEnterprise_Order_OrderController::_canShowOrderCancelForm()

src/app/code/community/EbayEnterprise/Inventory/Test/Model/DetailsTest.php 1 location

@@ 228-235 (lines=8) @@
225
     *
226
     * @return array
227
     */
228
    public function provideAddressAvailabilityStates()
229
    {
230
        return [
231
            [true, false],
232
            [false, true],
233
            [false, false],
234
        ];
235
    }
236
237
    /**
238
     * verify