Completed
Push — master ( 5b5ec4...aac2de )
by Lorenzo
02:09
created
src/NetworkInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     /**
20 20
      * @param \DateTime $dateFrom
21 21
      * @param \DateTime $dateTo
22
-     * @param int $merchantID
22
+     * @param int $arrMerchantID
23 23
      * @return array of Transaction
24 24
      */
25 25
     public function getSales(\DateTime $dateFrom, \DateTime $dateTo, array $arrMerchantID = array()) : array;
Please login to merge, or discard this patch.
src/Networks/NetAffiliation.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     /**
72 72
      * @param \DateTime $dateFrom
73 73
      * @param \DateTime $dateTo
74
-     * @param int $merchantID
74
+     * @param int $arrMerchantID
75 75
      * @return array of Transaction
76 76
      */
77 77
     public function getSales(\DateTime $dateFrom, \DateTime $dateTo, array $arrMerchantID = array()) : array
Please login to merge, or discard this patch.
Unused Use Statements   +5 added lines, -5 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;
6
+use Padosoft\AffiliateNetwork\Deal;
5 7
 use Padosoft\AffiliateNetwork\DealsResultset;
6
-use Padosoft\AffiliateNetwork\Transaction;
7 8
 use Padosoft\AffiliateNetwork\Merchant;
8
-use Padosoft\AffiliateNetwork\Stat;
9
-use Padosoft\AffiliateNetwork\Deal;
10
-use Padosoft\AffiliateNetwork\AbstractNetwork;
11
-use Padosoft\AffiliateNetwork\NetworkInterface;
12 9
 use Padosoft\AffiliateNetwork\NetAffiliationEx;
10
+use Padosoft\AffiliateNetwork\NetworkInterface;
11
+use Padosoft\AffiliateNetwork\Stat;
12
+use Padosoft\AffiliateNetwork\Transaction;
13 13
 if (!defined('COOKIES_BASE_DIR')){
14 14
     define('COOKIES_BASE_DIR',public_path('upload/report'));
15 15
 }
Please login to merge, or discard this patch.
src/Networks/TradeDoubler.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     /**
72 72
      * @param \DateTime $dateFrom
73 73
      * @param \DateTime $dateTo
74
-     * @param int $merchantID
74
+     * @param int $arrMerchantID
75 75
      * @return array of Transaction
76 76
      */
77 77
     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;
10
+use Padosoft\AffiliateNetwork\Stat;
12 11
 use Padosoft\AffiliateNetwork\TradeDoublerEx;
12
+use Padosoft\AffiliateNetwork\Transaction;
13 13
 if (!defined('COOKIES_BASE_DIR')){
14 14
     define('COOKIES_BASE_DIR',public_path('upload/report'));
15 15
 }
Please login to merge, or discard this patch.
src/AffiliateNetworkServiceProvider.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Padosoft\AffiliateNetwork;
4 4
 
5 5
 use Illuminate\Support\ServiceProvider;
6
-use Padosoft\AffiliateNetwork\Networks\Zanox;
7
-use Padosoft\AffiliateNetwork\Networks\ZanoxEx;
8 6
 
9 7
 class AffiliateNetworkServiceProvider extends ServiceProvider
10 8
 {
Please login to merge, or discard this patch.
src/NetworkManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
     /**
106 106
      * @param \DateTime $dateFrom
107 107
      * @param \DateTime $dateTo
108
-     * @param int $merchantID
108
+     * @param int $arrMerchantID
109 109
      *
110 110
      * @return array of Transaction
111 111
      */
Please login to merge, or discard this patch.
src/Networks/CommissionJunction.php 2 patches
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
     /**
81 81
      * @param int $merchantID
82
-     * @return array of Deal
82
+     * @return DealsResultset of Deal
83 83
      */
84 84
     public function getDeals($merchantID=NULL,int $page=0,int $items_per_page=10 ): DealsResultset
85 85
     {
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     /**
121 121
      * @param \DateTime $dateFrom
122 122
      * @param \DateTime $dateTo
123
-     * @param int $merchantID
123
+     * @param int $arrMerchantID
124 124
      * @return array of Transaction
125 125
      */
126 126
     public function getSales(\DateTime $dateFrom, \DateTime $dateTo, array $arrMerchantID = array()) : array
@@ -169,6 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
     /**
171 171
     * Api call CommissionJunction
172
+    * @param string $url
172 173
     */
173 174
     private function _apiCall($url)
174 175
     {
Please login to merge, or discard this patch.
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Padosoft\AffiliateNetwork\Networks;
4 4
 
5
-use Padosoft\AffiliateNetwork\Transaction;
6
-use Padosoft\AffiliateNetwork\Merchant;
7
-use Padosoft\AffiliateNetwork\Stat;
8
-use Padosoft\AffiliateNetwork\Deal;
9 5
 use Padosoft\AffiliateNetwork\AbstractNetwork;
10
-use Padosoft\AffiliateNetwork\NetworkInterface;
6
+use Padosoft\AffiliateNetwork\Deal;
11 7
 use Padosoft\AffiliateNetwork\DealsResultset;
8
+use Padosoft\AffiliateNetwork\Merchant;
9
+use Padosoft\AffiliateNetwork\NetworkInterface;
10
+use Padosoft\AffiliateNetwork\Stat;
11
+use Padosoft\AffiliateNetwork\Transaction;
12 12
 
13 13
 // require "../vendor/fubralimited/php-oara/Oara/Network/Publisher/CommissionJunction/Zapi/ApiClient.php";
14 14
 
Please login to merge, or discard this patch.
src/Networks/Effiliation.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   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Padosoft\AffiliateNetwork\Networks;
4 4
 
5
-use Padosoft\AffiliateNetwork\Transaction;
6
-use Padosoft\AffiliateNetwork\Merchant;
7
-use Padosoft\AffiliateNetwork\Stat;
8
-use Padosoft\AffiliateNetwork\Deal;
9 5
 use Padosoft\AffiliateNetwork\AbstractNetwork;
10
-use Padosoft\AffiliateNetwork\NetworkInterface;
6
+use Padosoft\AffiliateNetwork\Deal;
11 7
 use Padosoft\AffiliateNetwork\DealsResultset;
8
+use Padosoft\AffiliateNetwork\Merchant;
9
+use Padosoft\AffiliateNetwork\NetworkInterface;
10
+use Padosoft\AffiliateNetwork\Stat;
11
+use Padosoft\AffiliateNetwork\Transaction;
12 12
 
13 13
 // require "../vendor/fubralimited/php-oara/Oara/Network/Publisher/Effiliation/Zapi/ApiClient.php";
14 14
 
Please login to merge, or discard this patch.
src/Networks/Publicideas.php 2 patches
Unused Use Statements   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Padosoft\AffiliateNetwork\Networks;
4 4
 
5
-use Padosoft\AffiliateNetwork\Transaction;
6
-use Padosoft\AffiliateNetwork\Merchant;
7
-use Padosoft\AffiliateNetwork\Stat;
8
-use Padosoft\AffiliateNetwork\Deal;
9 5
 use Padosoft\AffiliateNetwork\AbstractNetwork;
10
-use Padosoft\AffiliateNetwork\NetworkInterface;
6
+use Padosoft\AffiliateNetwork\Deal;
11 7
 use Padosoft\AffiliateNetwork\DealsResultset;
8
+use Padosoft\AffiliateNetwork\Merchant;
9
+use Padosoft\AffiliateNetwork\NetworkInterface;
10
+use Padosoft\AffiliateNetwork\Stat;
11
+use Padosoft\AffiliateNetwork\Transaction;
12 12
 
13 13
 // require "../vendor/fubralimited/php-oara/Oara/Network/Publisher/Publicideas/Zapi/ApiClient.php";
14 14
 
Please login to merge, or discard this patch.
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.
src/Networks/WebGains.php 2 patches
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 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;
10
+use Padosoft\AffiliateNetwork\Stat;
11
+use Padosoft\AffiliateNetwork\Transaction;
12 12
 
13 13
 /**
14 14
  * Class WebGains
Please login to merge, or discard this patch.
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.