Completed
Pull Request — master (#287)
by Nic
07:56
created
code/model/foxycart.cart_validation.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -30,10 +30,16 @@
 block discarded – undo
30 30
 	// protected static $cart_url = 'https://yourdomain.foxycart.com/cart';
31 31
 	protected static $cart_url;
32 32
 
33
+	/**
34
+	 * @param string $storeName
35
+	 */
33 36
 	public static function setCartURL($storeName = null){
34 37
 		self::$cart_url = 'https://'.$storeName.'.faxycart.com/cart';
35 38
 	}
36 39
 
40
+	/**
41
+	 * @param string $secret
42
+	 */
37 43
 	public static function setSecret($secret = null){
38 44
 		self::$secret = $secret;
39 45
 	}
Please login to merge, or discard this patch.
code/objects/OptionItem.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -181,6 +181,9 @@
 block discarded – undo
181 181
         return $result;
182 182
     }
183 183
 
184
+    /**
185
+     * @param string $oma
186
+     */
184 187
     public static function getOptionModifierActionSymbol($oma, $returnWithOnlyPlusMinus = false)
185 188
     {
186 189
         switch ($oma) {
Please login to merge, or discard this patch.