@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | * WordPress.com. |
| 64 | 64 | * |
| 65 | 65 | * @param Integer $user_id the user identifier. |
| 66 | - * @return Boolean is the user connected? |
|
| 66 | + * @return integer is the user connected? |
|
| 67 | 67 | */ |
| 68 | 68 | public function is_user_connected( $user_id ) { |
| 69 | 69 | return $user_id; |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | * Get the wpcom user data of the current|specified connected user. |
| 74 | 74 | * |
| 75 | 75 | * @param Integer $user_id the user identifier. |
| 76 | - * @return Object the user object. |
|
| 76 | + * @return integer the user object. |
|
| 77 | 77 | */ |
| 78 | 78 | public function get_connected_user_data( $user_id ) { |
| 79 | 79 | return $user_id; |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | * Is the user the connection owner. |
| 84 | 84 | * |
| 85 | 85 | * @param Integer $user_id the user identifier. |
| 86 | - * @return Boolean is the user the connection owner? |
|
| 86 | + * @return integer is the user the connection owner? |
|
| 87 | 87 | */ |
| 88 | 88 | public function is_connection_owner( $user_id ) { |
| 89 | 89 | return $user_id; |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | } |
| 273 | 273 | |
| 274 | 274 | /** |
| 275 | - * @param $text |
|
| 275 | + * @param string $text |
|
| 276 | 276 | * @return string |
| 277 | 277 | */ |
| 278 | 278 | function jetpack_sha1_base64( $text ) { |
@@ -412,7 +412,7 @@ discard block |
||
| 412 | 412 | * 2. Stored Normal Tokens (via Jetpack_Options::get_option( 'blog_token' )) |
| 413 | 413 | * 3. Defined Normal Tokens (via the JETPACK_BLOG_TOKEN constant) |
| 414 | 414 | * |
| 415 | - * @param int|false $user_id false: Return the Blog Token. int: Return that user's User Token. |
|
| 415 | + * @param boolean $user_id false: Return the Blog Token. int: Return that user's User Token. |
|
| 416 | 416 | * @param string|false $token_key If provided, check that the token matches the provided input. |
| 417 | 417 | * |
| 418 | 418 | * @return object|false |