Code Duplication    Length = 12-12 lines in 2 locations

src/EbayEx.php 1 location

@@ 93-104 (lines=12) @@
90
    /**
91
     * @return array
92
     */
93
    public function getMerchantList()
94
    {
95
        $merchants = array();
96
97
        $obj = array();
98
        $obj['cid'] = "1";
99
        $obj['name'] = "Ebay";
100
        $obj['url'] = "https://publisher.ebaypartnernetwork.com";
101
        $merchants[] = $obj;
102
103
        return $merchants;
104
    }
105
106
    /**
107
     * @param null $merchantList

src/GrouponEx.php 1 location

@@ 73-84 (lines=12) @@
70
    /**
71
     * @return array
72
     */
73
    public function getMerchantList()
74
    {
75
        $merchants = array();
76
77
        $obj = array();
78
        $obj['cid'] = "1";
79
        $obj['name'] = "Groupon";
80
        $obj['url'] = "";
81
        $merchants[] = $obj;
82
83
        return $merchants;
84
    }
85
86
87
    /**