Completed
Branch 1.2 (19915c)
by Jason
02:54
created
code/controllers/FoxyStripe_Controller.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -34,6 +34,10 @@
 block discarded – undo
34 34
 		}
35 35
 	}
36 36
 	
37
+	/**
38
+	 * @param string $encrypted
39
+	 * @param string $decrypted
40
+	 */
37 41
 	public function handleDataFeed($encrypted, $decrypted){
38 42
         //handle encrypted & decrypted data
39 43
         $orders = new SimpleXMLElement($decrypted);
Please login to merge, or discard this patch.
code/model/foxycart.cart_validation.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
43 43
 		self::setSecret(FoxyCart::getStoreKey());
44 44
 	}
45 45
 
46
+	/**
47
+	 * @return string
48
+	 */
46 49
 	public static function getSecret(){
47 50
 		return FoxyCart::getStoreKey();
48 51
 	}
Please login to merge, or discard this patch.
code/pages/ProductHolder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
 	 * Products function.
111 111
 	 *
112 112
 	 * @access public
113
-	 * @return array
113
+	 * @return PaginatedList
114 114
 	 */
115 115
 	public function ProductList($limit = 10) {
116 116
 
Please login to merge, or discard this patch.
thirdparty/rc4crypt.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 	 *
32 32
 	 * @param string $pwd Key to encrypt with (can be binary of hex)
33 33
 	 * @param string $data Content to be encrypted
34
-	 * @param bool $ispwdHex Key passed is in hexadecimal or not
34
+	 * @param integer $ispwdHex Key passed is in hexadecimal or not
35 35
 	 * @access public
36 36
 	 * @return string
37 37
 	 */
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 	 *
77 77
 	 * @param string $pwd Key to decrypt with (can be binary of hex)
78 78
 	 * @param string $data Content to be decrypted
79
-	 * @param bool $ispwdHex Key passed is in hexadecimal or not
79
+	 * @param integer $ispwdHex Key passed is in hexadecimal or not
80 80
 	 * @access public
81 81
 	 * @return string
82 82
 	 */
Please login to merge, or discard this patch.