@@ -15,6 +15,10 @@ |
||
15 | 15 | } |
16 | 16 | |
17 | 17 | class Jetpack_Google_Analytics_Options { |
18 | + |
|
19 | + /** |
|
20 | + * @param string $option_name |
|
21 | + */ |
|
18 | 22 | public static function get_option( $option_name, $default = false ) { |
19 | 23 | $o = get_option( 'jetpack_wga' ); |
20 | 24 | return isset( $o[ $option_name ] ) ? $o[ $option_name ] : $default; |
@@ -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(); |
@@ -1283,7 +1283,7 @@ |
||
1283 | 1283 | * Returns an array of stock and custom taxonomy query vars |
1284 | 1284 | * |
1285 | 1285 | * @global $wp_taxonomies |
1286 | - * @return array |
|
1286 | + * @return string[] |
|
1287 | 1287 | */ |
1288 | 1288 | function get_taxonomy_vars() { |
1289 | 1289 | global $wp_taxonomies; |
@@ -58,6 +58,9 @@ |
||
58 | 58 | return latex_render( $latex, $fg, $bg, $s ); |
59 | 59 | } |
60 | 60 | |
61 | +/** |
|
62 | + * @param string $color |
|
63 | + */ |
|
61 | 64 | function latex_get_default_color( $color, $default_color = 'ffffff' ) { |
62 | 65 | global $themecolors; |
63 | 66 | return isset($themecolors[$color]) ? $themecolors[$color] : $default_color; |
@@ -504,6 +504,9 @@ |
||
504 | 504 | ) ); |
505 | 505 | } |
506 | 506 | |
507 | + /** |
|
508 | + * @param string $content |
|
509 | + */ |
|
507 | 510 | protected function comment_hash( $content ) { |
508 | 511 | return 'c-' . substr( md5( $content ), 0, 8 ); |
509 | 512 | } |
@@ -172,7 +172,7 @@ |
||
172 | 172 | * @param array $post_types - other post types. |
173 | 173 | * |
174 | 174 | * @see hook 'rest_api_allowed_post_types' |
175 | - * @return array |
|
175 | + * @return string[] |
|
176 | 176 | */ |
177 | 177 | public function allow_rest_api_types( $post_types ) { |
178 | 178 | $post_types[] = self::$post_type_plan; |
@@ -36,6 +36,9 @@ |
||
36 | 36 | add_action( 'init', array( &$this, 'action_init' ) ); |
37 | 37 | } |
38 | 38 | |
39 | + /** |
|
40 | + * @param string $file |
|
41 | + */ |
|
39 | 42 | function wpcom_static_url($file) { |
40 | 43 | $i = hexdec( substr( md5( $file ), -1 ) ) % 2; |
41 | 44 | return 'https://s' . $i . '.wp.com' . $file; |
@@ -81,7 +81,7 @@ |
||
81 | 81 | * |
82 | 82 | * @param String $plugin_slug plugin slug string. |
83 | 83 | * @param String $current_version plugin version string. |
84 | - * @return null|bool |
|
84 | + * @return false|null |
|
85 | 85 | */ |
86 | 86 | public static function cdnize_plugin_assets( $plugin_slug, $current_version ) { |
87 | 87 | global $wp_scripts, $wp_styles; |
@@ -35,6 +35,7 @@ discard block |
||
35 | 35 | /** |
36 | 36 | * Singleton implementation |
37 | 37 | * |
38 | + * @param string|false $ip_address |
|
38 | 39 | * @return object |
39 | 40 | */ |
40 | 41 | public static function instance( $ip_address ) { |
@@ -348,6 +349,9 @@ discard block |
||
348 | 349 | return $contents; |
349 | 350 | } |
350 | 351 | |
352 | + /** |
|
353 | + * @param string $message |
|
354 | + */ |
|
351 | 355 | function display_page( $title, $message, $back_button = false, $recovery_form = false ) { |
352 | 356 | |
353 | 357 | if ( ! headers_sent() ) { |