@@ -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 |
@@ -22,7 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * Converts GlotPress URL into a GlotPress API URL |
24 | 24 | * |
25 | - * @param sring $url URL |
|
25 | + * @param string $url URL |
|
26 | 26 | * @return sstring API URL |
27 | 27 | */ |
28 | 28 | function apize_url( $url ) { |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | |
49 | 49 | /** |
50 | 50 | * record_event |
51 | - * @param mixed $event Event object to send to Tracks. An array will be cast to object. Required. |
|
51 | + * @param Jetpack_Tracks_Event $event Event object to send to Tracks. An array will be cast to object. Required. |
|
52 | 52 | * Properties are included directly in the pixel query string after light validation. |
53 | 53 | * @return mixed True on success, WP_Error on failure |
54 | 54 | */ |
@@ -71,6 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | /** |
73 | 73 | * Synchronously request the pixel |
74 | + * @param string $pixel |
|
74 | 75 | */ |
75 | 76 | static function record_pixel( $pixel ) { |
76 | 77 | // Add the Request Timestamp and URL terminator just before the HTTP request. |
@@ -95,6 +95,9 @@ |
||
95 | 95 | return (array) $upgrader->skin->get_upgrade_messages(); |
96 | 96 | } |
97 | 97 | |
98 | + /** |
|
99 | + * @param string $plugin_slug |
|
100 | + */ |
|
98 | 101 | protected static function generate_wordpress_org_plugin_download_link( $plugin_slug ) { |
99 | 102 | return "https://downloads.wordpress.org/plugin/$plugin_slug.latest-stable.zip"; |
100 | 103 | } |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | * Is the user the connection owner. |
107 | 107 | * |
108 | 108 | * @param Integer $user_id the user identifier. |
109 | - * @return Boolean is the user the connection owner? |
|
109 | + * @return integer is the user the connection owner? |
|
110 | 110 | */ |
111 | 111 | public function is_connection_owner( $user_id ) { |
112 | 112 | return $user_id; |
@@ -570,7 +570,7 @@ discard block |
||
570 | 570 | * |
571 | 571 | * @param int|false $user_id false: Return the Blog Token. int: Return that user's User Token. |
572 | 572 | * @param string|false $token_key If provided, check that the token matches the provided input. |
573 | - * @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. |
|
573 | + * @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. |
|
574 | 574 | * |
575 | 575 | * @return object|false |
576 | 576 | */ |
@@ -115,7 +115,7 @@ |
||
115 | 115 | * Mock a global function and make it return a certain value. |
116 | 116 | * |
117 | 117 | * @param string $function_name Name of the function. |
118 | - * @param mixed $return_value Return value of the function. |
|
118 | + * @param integer $return_value Return value of the function. |
|
119 | 119 | * @return phpmock\Mock The mock object. |
120 | 120 | */ |
121 | 121 | protected function mock_function( $function_name, $return_value = null ) { |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | * @param string $vendorPath Path to the vendor directory. |
161 | 161 | * @param string $basePath Base Path. |
162 | 162 | * |
163 | - * @return array $classMap |
|
163 | + * @return string $classMap |
|
164 | 164 | */ |
165 | 165 | private function getClassMap( array $autoloads, Filesystem $filesystem, $vendorPath, $basePath ) { |
166 | 166 | $blacklist = null; |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | /** |
225 | 225 | * Generate the PHP that will be used in the autoload_classmap_package.php files. |
226 | 226 | * |
227 | - * @param srting $classMap class map array string that is to be written out to the file. |
|
227 | + * @param string $classMap class map array string that is to be written out to the file. |
|
228 | 228 | * |
229 | 229 | * @return string |
230 | 230 | */ |
@@ -14,6 +14,9 @@ |
||
14 | 14 | public $line; |
15 | 15 | public $func_name; |
16 | 16 | |
17 | + /** |
|
18 | + * @param string $func_name |
|
19 | + */ |
|
17 | 20 | public function __construct( $path, $line, $func_name ) { |
18 | 21 | $this->path = $path; |
19 | 22 | $this->line = $line; |
@@ -33,6 +33,9 @@ |
||
33 | 33 | } |
34 | 34 | } |
35 | 35 | |
36 | + /** |
|
37 | + * @param string $root |
|
38 | + */ |
|
36 | 39 | public function scan_dir( $root, $exclude = array() ) { |
37 | 40 | |
38 | 41 | if ( is_null( $exclude ) || ! is_array( $exclude ) ) { |