@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | * @param string $vendorPath Path to the vendor directory. |
| 141 | 141 | * @param string $basePath Base Path. |
| 142 | 142 | * |
| 143 | - * @return array $classMap |
|
| 143 | + * @return string $classMap |
|
| 144 | 144 | */ |
| 145 | 145 | private function getClassMap( array $autoloads, Filesystem $filesystem, $vendorPath, $basePath ) { |
| 146 | 146 | $blacklist = null; // not supported for now. |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | /** |
| 179 | 179 | * Generate the PHP that will be used in the autoload_classmap_package.php files. |
| 180 | 180 | * |
| 181 | - * @param srting $classMap class map array string that is to be written out to the file. |
|
| 181 | + * @param string $classMap class map array string that is to be written out to the file. |
|
| 182 | 182 | * |
| 183 | 183 | * @return string |
| 184 | 184 | */ |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | * |
| 17 | 17 | * @param string $type The type of option to return. Defaults to 'compact'. |
| 18 | 18 | * |
| 19 | - * @return array |
|
| 19 | + * @return string[] |
|
| 20 | 20 | */ |
| 21 | 21 | public static function get_option_names( $type = 'compact' ) { |
| 22 | 22 | switch ( $type ) { |
@@ -199,6 +199,9 @@ discard block |
||
| 199 | 199 | return $value; |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | + /** |
|
| 203 | + * @param string $name |
|
| 204 | + */ |
|
| 202 | 205 | private static function update_grouped_option( $group, $name, $value ) { |
| 203 | 206 | $options = get_option( self::$grouped_options[ $group ] ); |
| 204 | 207 | if ( ! is_array( $options ) ) { |
@@ -301,6 +304,9 @@ discard block |
||
| 301 | 304 | return $result; |
| 302 | 305 | } |
| 303 | 306 | |
| 307 | + /** |
|
| 308 | + * @param string $name |
|
| 309 | + */ |
|
| 304 | 310 | private static function get_grouped_option( $group, $name, $default ) { |
| 305 | 311 | $options = get_option( self::$grouped_options[ $group ] ); |
| 306 | 312 | if ( is_array( $options ) && isset( $options[ $name ] ) ) { |
@@ -420,7 +426,7 @@ discard block |
||
| 420 | 426 | * This function checks for a constant that, if present, will disable direct DB queries Jetpack uses to manage certain options and force Jetpack to always use Options API instead. |
| 421 | 427 | * Options can be selectively managed via a blacklist by filtering option names via the jetpack_disabled_raw_option filter. |
| 422 | 428 | * |
| 423 | - * @param $name Option name |
|
| 429 | + * @param string $name Option name |
|
| 424 | 430 | * |
| 425 | 431 | * @return bool |
| 426 | 432 | */ |
@@ -445,7 +451,7 @@ discard block |
||
| 445 | 451 | * @since 5.4.0 |
| 446 | 452 | * |
| 447 | 453 | * @param boolean $strip_unsafe_options If true, and by default, will strip out options necessary for the connection to WordPress.com. |
| 448 | - * @return array An array of all options managed via the Jetpack_Options class. |
|
| 454 | + * @return string[] An array of all options managed via the Jetpack_Options class. |
|
| 449 | 455 | */ |
| 450 | 456 | static function get_all_jetpack_options( $strip_unsafe_options = true ) { |
| 451 | 457 | $jetpack_options = self::get_option_names(); |
@@ -488,7 +494,7 @@ discard block |
||
| 488 | 494 | * |
| 489 | 495 | * @since 5.4.0 |
| 490 | 496 | * |
| 491 | - * @return array |
|
| 497 | + * @return string[] |
|
| 492 | 498 | */ |
| 493 | 499 | static function get_all_wp_options() { |
| 494 | 500 | // A manual build of the wp options |
@@ -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; |
@@ -399,7 +399,7 @@ discard block |
||
| 399 | 399 | * 2. Stored Normal Tokens (via Jetpack_Options::get_option( 'blog_token' )) |
| 400 | 400 | * 3. Defined Normal Tokens (via the JETPACK_BLOG_TOKEN constant) |
| 401 | 401 | * |
| 402 | - * @param int|false $user_id false: Return the Blog Token. int: Return that user's User Token. |
|
| 402 | + * @param boolean $user_id false: Return the Blog Token. int: Return that user's User Token. |
|
| 403 | 403 | * @param string|false $token_key If provided, check that the token matches the provided input. |
| 404 | 404 | * |
| 405 | 405 | * @return object|false |