@@ -16,6 +16,9 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | class Jetpack_Sitemap_Buffer_Master 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 | |
@@ -16,6 +16,9 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | class Jetpack_Sitemap_Buffer_News 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 | |
@@ -16,6 +16,9 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | class Jetpack_Sitemap_Buffer_Page 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 | |
@@ -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 | |
@@ -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; |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | * Validate the require two step checkbox in Settings > General |
| 263 | 263 | * |
| 264 | 264 | * @since 2.7 |
| 265 | - * @return boolean |
|
| 265 | + * @return integer |
|
| 266 | 266 | **/ |
| 267 | 267 | public function validate_jetpack_sso_require_two_step( $input ) { |
| 268 | 268 | return ( ! empty( $input ) ) ? 1 : 0; |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | * Validate the match by email check in Settings > General |
| 288 | 288 | * |
| 289 | 289 | * @since 2.9 |
| 290 | - * @return boolean |
|
| 290 | + * @return integer |
|
| 291 | 291 | **/ |
| 292 | 292 | public function validate_jetpack_sso_match_by_email( $input ) { |
| 293 | 293 | return ( ! empty( $input ) ) ? 1 : 0; |
@@ -179,7 +179,7 @@ |
||
| 179 | 179 | * @param array $hosts |
| 180 | 180 | * @param string $api_base |
| 181 | 181 | * |
| 182 | - * @return array |
|
| 182 | + * @return string[] |
|
| 183 | 183 | */ |
| 184 | 184 | static function allowed_redirect_hosts( $hosts, $api_base = JETPACK__API_BASE ) { |
| 185 | 185 | if ( empty( $hosts ) ) { |
@@ -290,7 +290,7 @@ discard block |
||
| 290 | 290 | * Get Stats Options. |
| 291 | 291 | * |
| 292 | 292 | * @access public |
| 293 | - * @param mixed $option Option. |
|
| 293 | + * @param string $option Option. |
|
| 294 | 294 | * @return mixed|null. |
| 295 | 295 | */ |
| 296 | 296 | function stats_get_option( $option ) { |
@@ -744,7 +744,7 @@ discard block |
||
| 744 | 744 | * Stats Convert Chart URLs. |
| 745 | 745 | * |
| 746 | 746 | * @access public |
| 747 | - * @param mixed $html HTML. |
|
| 747 | + * @param string $html HTML. |
|
| 748 | 748 | * @return string |
| 749 | 749 | */ |
| 750 | 750 | function stats_convert_chart_urls( $html ) { |
@@ -1414,7 +1414,7 @@ discard block |
||
| 1414 | 1414 | * |
| 1415 | 1415 | * @access public |
| 1416 | 1416 | * @param mixed $get Get. |
| 1417 | - * @param mixed $url URL. |
|
| 1417 | + * @param string $url URL. |
|
| 1418 | 1418 | * @return void |
| 1419 | 1419 | */ |
| 1420 | 1420 | function stats_print_wp_remote_error( $get, $url ) { |
@@ -1556,7 +1556,7 @@ discard block |
||
| 1556 | 1556 | * Stats get remote CSV. |
| 1557 | 1557 | * |
| 1558 | 1558 | * @access public |
| 1559 | - * @param mixed $url URL. |
|
| 1559 | + * @param string $url URL. |
|
| 1560 | 1560 | * @return array |
| 1561 | 1561 | */ |
| 1562 | 1562 | function stats_get_remote_csv( $url ) { |
@@ -514,7 +514,7 @@ |
||
| 514 | 514 | * Send a synchronous XML-RPC subscribe to blog posts or subscribe to post comments request. |
| 515 | 515 | * |
| 516 | 516 | * @param string $email |
| 517 | - * @param array $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
| 517 | + * @param integer $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
| 518 | 518 | * @param bool $async (optional) Should the subscription be performed asynchronously? Defaults to true. |
| 519 | 519 | * |
| 520 | 520 | * @return true|WP_Error true on success |