@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | /** |
| 246 | 246 | * A work-around / hack to make it possible to go to the media library with the add new box open. |
| 247 | 247 | * |
| 248 | - * @return bool |
|
| 248 | + * @return false|null |
|
| 249 | 249 | */ |
| 250 | 250 | public function print_in_footer_open_media_add_new() { |
| 251 | 251 | global $pagenow; |
@@ -339,7 +339,7 @@ discard block |
||
| 339 | 339 | /** |
| 340 | 340 | * @param array $extensions |
| 341 | 341 | * |
| 342 | - * @return array |
|
| 342 | + * @return string[] |
|
| 343 | 343 | */ |
| 344 | 344 | public function add_videopress_extenstion( $extensions ) { |
| 345 | 345 | $extensions[] = 'videopress'; |
@@ -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; |
@@ -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 | */ |