Completed
Push — master ( 15c9ac...32d63a )
by Marcus
02:17
created
src/Shop/Items.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,8 +103,8 @@
 block discarded – undo
103 103
     }
104 104
 
105 105
     /**
106
-     * @param string|array $mItemIndex
107
-     * @param string|array $mItemno
106
+     * @param string $mItemIndex
107
+     * @param string $mItemno
108 108
      * @return string
109 109
      */
110 110
     public function queryItemWhereClause($mItemIndex = '', $mItemno = '')
Please login to merge, or discard this patch.
src/Customer/Helper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
             $aErr['fax'] = true;
76 76
         }
77 77
         $postcountry = filter_input(INPUT_POST, 'country', FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_LOW);
78
-        if (HelperConfig::$customer['validate_country'] && (empty($postcountry) || !isset(HelperConfig::$countries['countries_' .$sLang][$postcountry]))) {
78
+        if (HelperConfig::$customer['validate_country'] && (empty($postcountry) || !isset(HelperConfig::$countries['countries_'.$sLang][$postcountry]))) {
79 79
             $aErr['country'] = true;
80 80
         }
81 81
         $posttos = filter_input(INPUT_POST, 'tos');
Please login to merge, or discard this patch.