Completed
Branch master (366423)
by Lawrence
02:40 queued 40s
created
src/Prestashop.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -202,6 +202,9 @@
 block discarded – undo
202 202
 
203 203
     }
204 204
 
205
+    /**
206
+     * @param null|string $id_product_attribute
207
+     */
205 208
     private function getCombinationSpecificPrice($combinationSet, $row, $id_product_attribute) {
206 209
             // Call getSpecificPrice in order to set $combination_specific_price
207 210
                 if (!isset($combinationSet[(int) $row['id_product_attribute']])) {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -207,9 +207,9 @@
 block discarded – undo
207 207
                 if (!isset($combinationSet[(int) $row['id_product_attribute']])) {
208 208
                     $specific_price = $this->getSpecificPrice($id_product_attribute, $row['id_product']);
209 209
                     $combinationSet[(int) $row['id_product_attribute']] = true;
210
-                    return array ($combinationSet, $specific_price);
210
+                    return array($combinationSet, $specific_price);
211 211
                 } else {
212
-                    return array (false, null);
212
+                    return array(false, null);
213 213
                 }
214 214
     }
215 215
 
Please login to merge, or discard this patch.