Completed
Push — master ( 5ee518...21d059 )
by Michael
23s
created
class/member.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,8 @@
 block discarded – undo
41 41
      * @created   :2010年06月20日 13时09分
42 42
      * @copyright 1997-2010 The Martin Group
43 43
      * @author    Martin <[email protected]>
44
-     * @param      $sql
45
-     * @param null $key
44
+     * @param      string $sql
45
+     * @param string $key
46 46
      * @return array
47 47
      */
48 48
     public function GetRows($sql, $key = null)
Please login to merge, or discard this patch.
class/search.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
      * @created   :2010年06月27日 19时57分
128 128
      * @copyright 1997-2010 The Martin Group
129 129
      * @author    Martin <[email protected]>
130
-     * @param $sql
130
+     * @param string $sql
131 131
      * @return int
132 132
      */
133 133
     public function GetCount($sql)
Please login to merge, or discard this patch.
include/plugin.tag.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     //get hotel tag function
38 38
     /**
39 39
      * @param $items
40
-     * @return bool
40
+     * @return false|null
41 41
      */
42 42
     function martin_tag_iteminfo(&$items)
43 43
     {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * Remove orphan tag-item links
79 79
      *
80 80
      * @param $mid
81
-     * @return bool
81
+     * @return boolean|null
82 82
      */
83 83
     function martin_tag_synchronization($mid)
84 84
     {
Please login to merge, or discard this patch.
pay/alipay/php-demo/alipay_notify.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -70,6 +70,9 @@  discard block
 block discarded – undo
70 70
 		}else return false;
71 71
 	}
72 72
 
73
+	/**
74
+	 * @param string $url
75
+	 */
73 76
 	function get_verify($url,$time_out = "60") {
74 77
 		$urlarr = parse_url($url);
75 78
 		$errno = "";
@@ -117,6 +120,9 @@  discard block
 block discarded – undo
117 120
 
118 121
 	}
119 122
 
123
+	/**
124
+	 * @param string $prestr
125
+	 */
120 126
 	function sign($prestr) {
121 127
 		$sign='';
122 128
 		if($this->sign_type == 'MD5') {
@@ -155,6 +161,11 @@  discard block
 block discarded – undo
155 161
 	}
156 162
 
157 163
 	//ʵÏÖ¶àÖÖ×Ö·û½âÂ뷽ʽ
164
+
165
+	/**
166
+	 * @param string $input
167
+	 * @param string $_input_charset
168
+	 */
158 169
 	function charset_decode($input,$_input_charset ,$_output_charset="GBK"  ) {
159 170
 		$output = "";
160 171
 		if(!isset($_input_charset) )$_input_charset  = $this->_input_charset ;
Please login to merge, or discard this patch.
pay/alipay/php-demo/alipay_service.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -71,6 +71,9 @@  discard block
 block discarded – undo
71 71
 
72 72
 	}
73 73
 
74
+	/**
75
+	 * @param string $prestr
76
+	 */
74 77
 	function sign($prestr) {
75 78
 		$mysign = "";
76 79
 		if($this->sign_type == 'MD5') {
@@ -94,6 +97,10 @@  discard block
 block discarded – undo
94 97
 		return $para;
95 98
 	}
96 99
 	//ʵÏÖ¶àÖÖ×Ö·û±àÂ뷽ʽ
100
+
101
+	/**
102
+	 * @return string
103
+	 */
97 104
 	function charset_encode($input,$_output_charset ,$_input_charset ="GBK" ) {
98 105
 		$output = "";
99 106
 		if(!isset($_output_charset) )$_output_charset  = $this->parameter['_input_charset '];
Please login to merge, or discard this patch.
pay/alipay/return_url.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
 	}
26 26
 }
27 27
 
28
+/**
29
+ * @param string $word
30
+ */
28 31
 function  log_result($word) {
29 32
 	$fp = fopen("log.txt","a");	
30 33
 	flock($fp, LOCK_EX) ;
Please login to merge, or discard this patch.
zip/unzip.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@
 block discarded – undo
146 146
 
147 147
         /**
148 148
          * @param $zip
149
-         * @return mixed
149
+         * @return string
150 150
          */
151 151
         function ReadFileHeader($zip)
152 152
         {
Please login to merge, or discard this patch.
class/auction.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
     /**
162 162
      * create a new hotel city
163 163
      * @param bool $isNew flag the new objects as "new"?
164
-     * @return object auction
164
+     * @return MartinAuction auction
165 165
      */
166 166
     public function &create($isNew = true)
167 167
     {
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
      * @created   :2010年06月20日 13时09分
204 204
      * @copyright 1997-2010 The Martin Group
205 205
      * @author    Martin <[email protected]>
206
-     * @param      $sql
206
+     * @param      string $sql
207 207
      * @param null $key
208 208
      * @return array
209 209
      */
Please login to merge, or discard this patch.
class/group.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     /**
144 144
      * create a new hotel city
145 145
      * @param bool $isNew flag the new objects as "new"?
146
-     * @return object group
146
+     * @return MartinGroup group
147 147
      */
148 148
     public function &create($isNew = true)
149 149
     {
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
      * @created   :2010年06月20日 13时09分
186 186
      * @copyright 1997-2010 The Martin Group
187 187
      * @author    Martin <[email protected]>
188
-     * @param      $sql
188
+     * @param      string $sql
189 189
      * @param null $key
190 190
      * @return array
191 191
      */
Please login to merge, or discard this patch.