@@ -34,6 +34,10 @@ |
||
| 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); |
@@ -43,6 +43,9 @@ |
||
| 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 | } |
@@ -110,7 +110,7 @@ |
||
| 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 | |
@@ -31,7 +31,7 @@ discard block |
||
| 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 |
||
| 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 | */ |