Code Duplication    Length = 6-6 lines in 8 locations

src/Networks/Publicideas.php 1 location

@@ 167-172 (lines=6) @@
164
                return array();
165
            }
166
            $arrResult = array();
167
            if (count( $arrMerchantID ) < 1) {
168
                $merchants = $this->getMerchants();
169
                foreach ($merchants as $merchant) {
170
                    $arrMerchantID[$merchant->merchant_ID] = ['cid' => $merchant->merchant_ID, 'name' => $merchant->name];
171
                }
172
            }
173
            $transactionList = $this->_network->getTransactionList($arrMerchantID, $dateFrom, $dateTo);
174
            //$i=0;
175
            foreach($transactionList as $transaction) {

src/Networks/WebGains.php 1 location

@@ 135-140 (lines=6) @@
132
     */
133
    public function getSales(\DateTime $dateFrom, \DateTime $dateTo, array $arrMerchantID = array()) : array
134
    {
135
        if (count( $arrMerchantID ) < 1) {
136
            $merchants = $this->getMerchants();
137
            foreach ($merchants as $merchant) {
138
                $arrMerchantID[$merchant->merchant_ID] = ['cid' => $merchant->merchant_ID, 'name' => $merchant->name];
139
            }
140
        }
141
        $arrResult = array();
142
        $transcationList = $this->_network->getTransactionList($arrMerchantID, $dateFrom, $dateTo);
143
        foreach($transcationList as $transaction) {

src/Networks/CommissionJunction.php 1 location

@@ 164-169 (lines=6) @@
161
    public function getSales(\DateTime $dateFrom, \DateTime $dateTo, array $arrMerchantID = array()): array
162
    {
163
        $arrResult = array();
164
        if (count( $arrMerchantID ) < 1) {
165
            $merchants = $this->getMerchants();
166
            foreach ($merchants as $merchant) {
167
                $arrMerchantID[$merchant->merchant_ID] = ['cid' => $merchant->merchant_ID, 'name' => $merchant->name];
168
            }
169
        }
170
        $transcationList = $this->_network->getTransactionList($arrMerchantID, $dateFrom,$dateTo);
171
        //echo "<br>merchants id array<br>".print_r($arrMerchantID);
172
        //$counter=0;

src/Networks/TradeDoubler.php 1 location

@@ 185-190 (lines=6) @@
182
            return array();
183
        }
184
        $arrResult = array();
185
        if (count( $arrMerchantID ) < 1) {
186
            $merchants = $this->getMerchants();
187
            foreach ($merchants as $merchant) {
188
                $arrMerchantID[$merchant->merchant_ID] = ['cid' => $merchant->merchant_ID, 'name' => $merchant->name];
189
            }
190
        }
191
        $transactionList = $this->_network->getTransactionList($arrMerchantID, $dateFrom, $dateTo);
192
        foreach($transactionList as $transaction) {
193
            $Transaction = Transaction::createInstance();

src/Networks/Affilinet.php 1 location

@@ 188-193 (lines=6) @@
185
    public function getSales(\DateTime $dateFrom, \DateTime $dateTo, array $arrMerchantID = array()): array
186
    {
187
        $arrResult = array();
188
        if (count( $arrMerchantID ) < 1) {
189
            $merchants = $this->getMerchants();
190
            foreach ($merchants as $merchant) {
191
                $arrMerchantID[$merchant->merchant_ID] = ['cid' => $merchant->merchant_ID, 'name' => $merchant->name];
192
            }
193
        }
194
        $transactionList = $this->_network->getTransactionList($arrMerchantID, $dateFrom,$dateTo);
195
        //echo "<br>merchants id array<br>".print_r($arrMerchantID);
196
        //$counter=0;

src/Networks/Zanox.php 1 location

@@ 216-221 (lines=6) @@
213
        }
214
215
        $arrResult = array();
216
        if (count( $arrMerchantID ) < 1) {
217
            $merchants = $this->getMerchants();
218
            foreach ($merchants as $merchant) {
219
                $arrMerchantID[$merchant->merchant_ID] = ['cid' => $merchant->merchant_ID, 'name' => $merchant->name];
220
            }
221
        }
222
        $transcationList = $this->_network->getTransactionList( $arrMerchantID, $dateFrom2, $dateTo );
223
        foreach ($transcationList as $transaction) {
224
            $Transaction = Transaction::createInstance();

src/Networks/Effiliation.php 1 location

@@ 158-163 (lines=6) @@
155
    {
156
        $arrResult = array();
157
        try {
158
            if (count( $arrMerchantID ) < 1) {
159
                $merchants = $this->getMerchants();
160
                foreach ($merchants as $merchant) {
161
                    $arrMerchantID[$merchant->merchant_ID] = ['cid' => $merchant->merchant_ID, 'name' => $merchant->name];
162
                }
163
            }
164
             $transactionList = $this->_network->getTransactionList($arrMerchantID, $dateFrom, $dateTo);
165
166
            foreach($transactionList as $transaction) {

src/Networks/Belboon.php 1 location

@@ 182-187 (lines=6) @@
179
    {
180
        $arrResult = array();
181
        try {
182
            if (count( $arrMerchantID ) < 1) {
183
                $merchants = $this->getMerchants();
184
                foreach ($merchants as $merchant) {
185
                    $arrMerchantID[$merchant->merchant_ID] = ['cid' => $merchant->merchant_ID, 'name' => $merchant->name];
186
                }
187
            }
188
             $transactionList = $this->_network->getTransactionList($arrMerchantID, $dateFrom, $dateTo);
189
190
            foreach($transactionList as $transaction) {