@@ -16,6 +16,9 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | class Jetpack_Sitemap_Buffer_Video extends Jetpack_Sitemap_Buffer { |
| 18 | 18 | |
| 19 | + /** |
|
| 20 | + * @param integer $byte_limit |
|
| 21 | + */ |
|
| 19 | 22 | public function __construct( $item_limit, $byte_limit, $time = '1970-01-01 00:00:00' ) { |
| 20 | 23 | parent::__construct( $item_limit, $byte_limit, $time ); |
| 21 | 24 | |
@@ -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; |
@@ -76,7 +76,6 @@ |
||
| 76 | 76 | * @since 5.8.0 |
| 77 | 77 | * |
| 78 | 78 | * @param string|array $key Query key or keys to remove. |
| 79 | - * @param bool|string $query Optional. A URL to act upon. Defaults to the current search URL. |
|
| 80 | 79 | * |
| 81 | 80 | * @return string New URL query string (unescaped). |
| 82 | 81 | */ |
@@ -505,6 +505,9 @@ |
||
| 505 | 505 | public $service = ''; |
| 506 | 506 | public $total = 0; |
| 507 | 507 | |
| 508 | + /** |
|
| 509 | + * @param integer $total |
|
| 510 | + */ |
|
| 508 | 511 | public function __construct( $id, $total ) { |
| 509 | 512 | $services = new Sharing_Service(); |
| 510 | 513 | $this->id = esc_html( $id ); |
@@ -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; |
@@ -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; |
@@ -154,7 +154,7 @@ discard block |
||
| 154 | 154 | * |
| 155 | 155 | * @since 5.3.0 |
| 156 | 156 | * |
| 157 | - * @param array $array The item to be added. |
|
| 157 | + * @param string $array The item to be added. |
|
| 158 | 158 | * |
| 159 | 159 | * @return bool True if the append succeeded, False if not. |
| 160 | 160 | */ |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | * @param DOMElement $parent (optional) an element to which new children should be added. |
| 284 | 284 | * @param DOMDocument $root (optional) the parent document. |
| 285 | 285 | * |
| 286 | - * @return string|DOMDocument The rendered XML string or an object if root element is specified. |
|
| 286 | + * @return null|DOMNode The rendered XML string or an object if root element is specified. |
|
| 287 | 287 | */ |
| 288 | 288 | protected function array_to_xml_string( $array, $parent = null, $root = null ) { |
| 289 | 289 | $return_string = false; |
@@ -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 |
@@ -415,7 +415,7 @@ |
||
| 415 | 415 | * |
| 416 | 416 | * @param array $connections_data |
| 417 | 417 | * |
| 418 | - * @return array { |
|
| 418 | + * @return string { |
|
| 419 | 419 | * Array of content for generating connection form. |
| 420 | 420 | * |
| 421 | 421 | * @type string HTML content of form |