Completed
Push — master ( 341552...dc2dd9 )
by Lawrence
02:01
created
src/Prestashop.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
 
191 191
     private function getAvailableDate($row) {
192 192
         $row['available_date'] != '0000-00-00' ? return $row['available_date'] : return '';
193
-   }
193
+    }
194 194
 
195 195
     /**
196 196
      * @param null|string $id_product_attribute
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@
 block discarded – undo
229 229
                 LEFT JOIN `'._DB_PREFIX_.'attribute_group_lang` agl ON (ag.`id_attribute_group` = agl.`id_attribute_group`)
230 230
                  INNER JOIN '._DB_PREFIX_.'attribute_shop attribute_shop
231 231
                     ON (attribute_shop.id_attribute = a.id_attribute AND attribute_shop.id_shop = 1)
232
-                WHERE pas.`id_product_attribute`= '.(int)$id_product_attribute.'
232
+                WHERE pas.`id_product_attribute`= '.(int) $id_product_attribute.'
233 233
                 GROUP BY id_attribute_group, id_product_attribute
234 234
                 ORDER BY ag.`position` ASC, a.`position` ASC, agl.`name` ASC';
235 235
 
Please login to merge, or discard this patch.