Completed
Push — master ( 01b86e...5a74f2 )
by
unknown
04:57
created
src/Networks/LinkShare.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
     /**
73 73
      * @param int $merchantID
74
-     * @return array of Deal
74
+     * @return DealsResultset of Deal
75 75
      */
76 76
     public function getDeals($merchantID=NULL,int $page=0,int $items_per_page=10 ): DealsResultset
77 77
     {
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     /**
108 108
      * @param \DateTime $dateFrom
109 109
      * @param \DateTime $dateTo
110
-     * @param int $merchantID
110
+     * @param int $arrMerchantID
111 111
      * @return array of Transaction
112 112
      */
113 113
     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\Transaction;
5
+use Padosoft\AffiliateNetwork\AbstractNetwork;
6
+use Padosoft\AffiliateNetwork\Deal;
6 7
 use Padosoft\AffiliateNetwork\DealsResultset;
7 8
 use Padosoft\AffiliateNetwork\Merchant;
8
-use Padosoft\AffiliateNetwork\Stat;
9
-use Padosoft\AffiliateNetwork\Deal;
10
-use Padosoft\AffiliateNetwork\AbstractNetwork;
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 LinkShare
Please login to merge, or discard this patch.