Completed
Push — 23_general_updates ( a4bc58 )
by Harald
05:50
created
catalog/includes/modules/payment/stripe.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -361,6 +361,9 @@  discard block
 block discarded – undo
361 361
       return $this->_check;
362 362
     }
363 363
 
364
+    /**
365
+     * @param string $parameter
366
+     */
364 367
     function install($parameter = null) {
365 368
       $params = $this->getParams();
366 369
 
@@ -515,6 +518,9 @@  discard block
 block discarded – undo
515 518
       return $params;
516 519
     }
517 520
 
521
+    /**
522
+     * @param string $url
523
+     */
518 524
     function sendTransactionToGateway($url, $parameters = null, $curl_opts = array()) {
519 525
       $server = parse_url($url);
520 526
 
Please login to merge, or discard this patch.
catalog/includes/modules/shipping/usps.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -167,19 +167,31 @@
 block discarded – undo
167 167
       $this->service = $service;
168 168
     }
169 169
 
170
+    /**
171
+     * @param double $pounds
172
+     */
170 173
     function _setWeight($pounds, $ounces=0) {
171 174
       $this->pounds = $pounds;
172 175
       $this->ounces = $ounces;
173 176
     }
174 177
 
178
+    /**
179
+     * @param string $container
180
+     */
175 181
     function _setContainer($container) {
176 182
       $this->container = $container;
177 183
     }
178 184
 
185
+    /**
186
+     * @param string $size
187
+     */
179 188
     function _setSize($size) {
180 189
       $this->size = $size;
181 190
     }
182 191
 
192
+    /**
193
+     * @param string $machinable
194
+     */
183 195
     function _setMachinable($machinable) {
184 196
       $this->machinable = $machinable;
185 197
     }
Please login to merge, or discard this patch.
catalog/install/includes/functions/database.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -162,6 +162,9 @@
 block discarded – undo
162 162
       return $link;
163 163
     }
164 164
 
165
+    /**
166
+     * @param string $charset
167
+     */
165 168
     function mysqli_set_charset($link, $charset) {
166 169
       if ( function_exists('mysql_set_charset') ) {
167 170
         return mysql_set_charset($charset, $link);
Please login to merge, or discard this patch.