Completed
Branch fjbender-papercuts-patch (07df71)
by Florian
02:20
created
Helper/Api.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -142,6 +142,7 @@
 block discarded – undo
142 142
     /**
143 143
      * Generate the request url out of the params and die api url
144 144
      *
145
+     * @param string $sApiUrl
145 146
      * @return string
146 147
      */
147 148
     public function getRequestUrl($aParameters, $sApiUrl)
Please login to merge, or discard this patch.
Helper/Customer.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,6 @@
 block discarded – undo
102 102
     /**
103 103
      * Get the region object for the state and country given by PayPal
104 104
      *
105
-     * @param  array $aResponse
106 105
      * @return Region|bool
107 106
      */
108 107
     public function getRegion($sCountry, $sState)
Please login to merge, or discard this patch.
Helper/Order.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,6 +95,7 @@  discard block
 block discarded – undo
95 95
     /**
96 96
      * Return the order related to the given TransactionStatus
97 97
      *
98
+     * @param string $sTxid
98 99
      * @return SalesOrder|null
99 100
      */
100 101
     public function getOrderByTxid($sTxid)
@@ -160,7 +161,6 @@  discard block
 block discarded – undo
160 161
      * Fill billing and shipping addresses with the needed information from the response
161 162
      *
162 163
      * @param  Address $oAddress
163
-     * @param  array   $aResponse
164 164
      * @return Address
165 165
      */
166 166
     public function fillSingleAddress(Address $oAddress, $sFirstname, $sLastname, $sStreet, $sCity, $sZip, $sCountry, $sState)
Please login to merge, or discard this patch.
Model/Api/Invoice.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
      * @param  Order $oOrder     Order object
118 118
      * @param  array $aPositions Is given with non-complete captures or debits
119 119
      * @param  bool  $blDebit    Is the call coming from a debit request
120
-     * @return float
120
+     * @return integer
121 121
      */
122 122
     public function addProductInfo(Base $oRequest, Order $oOrder, $aPositions = false, $blDebit = false)
123 123
     {
Please login to merge, or discard this patch.
Helper/Country.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
      * Returns formatted birthday if possible
117 117
      *
118 118
      * @param  DataObject $data
119
-     * @return string|bool
119
+     * @return string|false
120 120
      */
121 121
     protected function getFormattedBirthday(DataObject $data)
122 122
     {
Please login to merge, or discard this patch.