Completed
Push — master ( 69f7b1...9abf2f )
by
unknown
03:57
created
src/Networks/Belboon.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
     /**
65 65
      * @param int $merchantID
66
-     * @return array of Deal
66
+     * @return DealsResultset of Deal
67 67
      */
68 68
     public function getDeals($merchantID=null, int $page=0, int $items_per_page=10): DealsResultset
69 69
     {
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     /**
111 111
      * @param \DateTime $dateFrom
112 112
      * @param \DateTime $dateTo
113
-     * @param int $merchantID
113
+     * @param int $arrMerchantID
114 114
      * @return array of Transaction
115 115
      */
116 116
     public function getSales(\DateTime $dateFrom, \DateTime $dateTo, array $arrMerchantID = array()) : array
Please login to merge, or discard this patch.
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,14 +2,14 @@
 block discarded – undo
2 2
 
3 3
 namespace Padosoft\AffiliateNetwork\Networks;
4 4
 
5
+use Padosoft\AffiliateNetwork\AbstractNetwork;
5 6
 use Padosoft\AffiliateNetwork\Deal;
6
-use Padosoft\AffiliateNetwork\Stat;
7
-use Padosoft\AffiliateNetwork\Merchant;
8
-use Padosoft\AffiliateNetwork\Transaction;
9 7
 use Padosoft\AffiliateNetwork\DealsResultset;
10
-use Padosoft\AffiliateNetwork\AbstractNetwork;
8
+use Padosoft\AffiliateNetwork\Merchant;
11 9
 use Padosoft\AffiliateNetwork\NetworkInterface;
12 10
 use Padosoft\AffiliateNetwork\ProductsResultset;
11
+use Padosoft\AffiliateNetwork\Stat;
12
+use Padosoft\AffiliateNetwork\Transaction;
13 13
 
14 14
 /**
15 15
  * Class Belboon
Please login to merge, or discard this patch.