@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * WordPress.com. |
| 59 | 59 | * |
| 60 | 60 | * @param Integer $user_id the user identifier. |
| 61 | - * @return Boolean is the user connected? |
|
| 61 | + * @return integer is the user connected? |
|
| 62 | 62 | */ |
| 63 | 63 | public function is_user_connected( $user_id ) { |
| 64 | 64 | return $user_id; |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * Get the wpcom user data of the current|specified connected user. |
| 69 | 69 | * |
| 70 | 70 | * @param Integer $user_id the user identifier. |
| 71 | - * @return Object the user object. |
|
| 71 | + * @return integer the user object. |
|
| 72 | 72 | */ |
| 73 | 73 | public function get_connected_user_data( $user_id ) { |
| 74 | 74 | return $user_id; |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | * Is the user the connection owner. |
| 79 | 79 | * |
| 80 | 80 | * @param Integer $user_id the user identifier. |
| 81 | - * @return Boolean is the user the connection owner? |
|
| 81 | + * @return integer is the user the connection owner? |
|
| 82 | 82 | */ |
| 83 | 83 | public function is_connection_owner( $user_id ) { |
| 84 | 84 | return $user_id; |
@@ -409,9 +409,9 @@ discard block |
||
| 409 | 409 | * 2. Stored Normal Tokens (via Jetpack_Options::get_option( 'blog_token' )) |
| 410 | 410 | * 3. Defined Normal Tokens (via the JETPACK_BLOG_TOKEN constant) |
| 411 | 411 | * |
| 412 | - * @param int|false $user_id false: Return the Blog Token. int: Return that user's User Token. |
|
| 412 | + * @param boolean $user_id false: Return the Blog Token. int: Return that user's User Token. |
|
| 413 | 413 | * @param string|false $token_key If provided, check that the token matches the provided input. |
| 414 | - * @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. |
|
| 414 | + * @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. |
|
| 415 | 415 | * |
| 416 | 416 | * @return object|false |
| 417 | 417 | */ |