@@ -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 | } |
@@ -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() ) { |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | /** |
27 | 27 | * Verifies that a user answered the math problem correctly while logging in. |
28 | 28 | * |
29 | - * @return bool Returns true if the math is correct |
|
29 | + * @return boolean|null Returns true if the math is correct |
|
30 | 30 | * @throws Error if insuffient $_POST variables are present. |
31 | 31 | * @throws Error message if the math is wrong |
32 | 32 | */ |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | /** |
110 | 110 | * Requires a user to solve a simple equation. Added to any WordPress login form. |
111 | 111 | * |
112 | - * @return VOID outputs html |
|
112 | + * @return string|null outputs html |
|
113 | 113 | */ |
114 | 114 | static function math_form() { |
115 | 115 | // Check if jpp_math_pass cookie is set and it matches valid transient |
@@ -10,7 +10,7 @@ |
||
10 | 10 | * |
11 | 11 | * @access public |
12 | 12 | * @param string $older_than (default: '1 hour') Older Than. |
13 | - * @return void |
|
13 | + * @return false|null |
|
14 | 14 | */ |
15 | 15 | function jp_purge_transients( $older_than = '1 hour' ) { |
16 | 16 | global $wpdb; |
@@ -682,6 +682,9 @@ |
||
682 | 682 | $this->options_save_other( 'linkedin' ); |
683 | 683 | } |
684 | 684 | |
685 | + /** |
|
686 | + * @param string $service_name |
|
687 | + */ |
|
685 | 688 | function options_save_other( $service_name ) { |
686 | 689 | // Nonce check |
687 | 690 | check_admin_referer( 'save_' . $service_name . '_token_' . $_REQUEST['connection'] ); |