@@ -29,7 +29,7 @@ |
||
| 29 | 29 | * Allows custom post types to be used by REST API. |
| 30 | 30 | * @param $post_types |
| 31 | 31 | * @see hook 'rest_api_allowed_post_types' |
| 32 | - * @return array |
|
| 32 | + * @return string[] |
|
| 33 | 33 | */ |
| 34 | 34 | function allow_rest_api_types( $post_types ) { |
| 35 | 35 | $post_types[] = self::$post_type_order; |
@@ -16,6 +16,9 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | class Jetpack_Sitemap_Buffer_Image 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_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 | |
@@ -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; |
@@ -326,6 +326,9 @@ |
||
| 326 | 326 | return $contents; |
| 327 | 327 | } |
| 328 | 328 | |
| 329 | + /** |
|
| 330 | + * @param string $message |
|
| 331 | + */ |
|
| 329 | 332 | function display_page( $title, $message, $back_button = false, $recovery_form = false ) { |
| 330 | 333 | |
| 331 | 334 | if ( ! headers_sent() ) { |
@@ -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 | */ |