@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | /** |
273 | 273 | * Verifies the signature of the current request. |
274 | 274 | * |
275 | - * @return false|array |
|
275 | + * @return boolean |
|
276 | 276 | */ |
277 | 277 | public function verify_xml_rpc_signature() { |
278 | 278 | if ( is_null( $this->xmlrpc_verification ) ) { |
@@ -1134,6 +1134,7 @@ discard block |
||
1134 | 1134 | * @param String $action The action name. |
1135 | 1135 | * @param Integer $user_id The user identifier. |
1136 | 1136 | * @param Integer $exp Expiration time in seconds. |
1137 | + * @return string |
|
1137 | 1138 | */ |
1138 | 1139 | public function generate_secrets( $action, $user_id = false, $exp = 600 ) { |
1139 | 1140 | if ( false === $user_id ) { |
@@ -1549,7 +1550,7 @@ discard block |
||
1549 | 1550 | * |
1550 | 1551 | * @param int|false $user_id false: Return the Blog Token. int: Return that user's User Token. |
1551 | 1552 | * @param string|false $token_key If provided, check that the token matches the provided input. |
1552 | - * @param bool|true $suppress_errors If true, return a falsy value when the token isn't found; When false, return a descriptive WP_Error when the token isn't found. |
|
1553 | + * @param boolean $suppress_errors If true, return a falsy value when the token isn't found; When false, return a descriptive WP_Error when the token isn't found. |
|
1553 | 1554 | * |
1554 | 1555 | * @return object|false |
1555 | 1556 | */ |
@@ -297,7 +297,7 @@ |
||
297 | 297 | * Returns a download URL, dealing with Google's long file names. |
298 | 298 | * |
299 | 299 | * @param array $guid Media information. |
300 | - * @return string|\WP_Error |
|
300 | + * @return string |
|
301 | 301 | */ |
302 | 302 | public function get_download_url( $guid ) { |
303 | 303 | $this->tmp_name = $guid['name']; |
@@ -154,7 +154,7 @@ |
||
154 | 154 | * @param string $avatar The <img/> element of the avatar. |
155 | 155 | * @param mixed $author User ID, email address, user login, comment object, user object, post object |
156 | 156 | * |
157 | - * @return The <img/> element of the avatar. |
|
157 | + * @return string <img/> element of the avatar. |
|
158 | 158 | */ |
159 | 159 | function grofiles_get_avatar( $avatar, $author ) { |
160 | 160 | $is_amp = class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request(); |
@@ -310,7 +310,7 @@ |
||
310 | 310 | /** |
311 | 311 | * Get the current user id |
312 | 312 | * |
313 | - * @return int |
|
313 | + * @return string |
|
314 | 314 | */ |
315 | 315 | public function get_user_id() { |
316 | 316 | if ( is_user_logged_in() ) { |
@@ -514,7 +514,7 @@ |
||
514 | 514 | * Send a synchronous XML-RPC subscribe to blog posts or subscribe to post comments request. |
515 | 515 | * |
516 | 516 | * @param string $email |
517 | - * @param array $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
517 | + * @param integer $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
518 | 518 | * @param bool $async (optional) Should the subscription be performed asynchronously? Defaults to true. |
519 | 519 | * |
520 | 520 | * @return true|WP_Error true on success |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | * |
39 | 39 | * A null argument will log the file and line number of the l() call. |
40 | 40 | * |
41 | - * @param mixed $stuff Information to log. |
|
41 | + * @param string $stuff Information to log. |
|
42 | 42 | */ |
43 | 43 | function l( $stuff = null ) { |
44 | 44 | // Do nothing when debugging is off. |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | * |
167 | 167 | * @param string $name Timer name. |
168 | 168 | * |
169 | - * @return mixed void or elapsed time. |
|
169 | + * @return null|double void or elapsed time. |
|
170 | 170 | */ |
171 | 171 | function e( $name = '' ) { |
172 | 172 | static $times = array(); |