@@ -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; |
@@ -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 ) ) { |
@@ -294,6 +294,9 @@ discard block |
||
| 294 | 294 | return $this->_options; |
| 295 | 295 | } |
| 296 | 296 | |
| 297 | + /** |
|
| 298 | + * @param string $option_name |
|
| 299 | + */ |
|
| 297 | 300 | public function get_option( $option_name ) { |
| 298 | 301 | $options = $this->get_options(); |
| 299 | 302 | |
@@ -1428,6 +1431,8 @@ discard block |
||
| 1428 | 1431 | * Enqueues assets needed to do async loading of related posts. |
| 1429 | 1432 | * |
| 1430 | 1433 | * @uses wp_enqueue_script, wp_enqueue_style, plugins_url |
| 1434 | + * @param boolean $script |
|
| 1435 | + * @param boolean $style |
|
| 1431 | 1436 | * @return null |
| 1432 | 1437 | */ |
| 1433 | 1438 | protected function _enqueue_assets( $script, $style ) { |
@@ -170,6 +170,9 @@ |
||
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | |
| 173 | + /** |
|
| 174 | + * @param string $plugin |
|
| 175 | + */ |
|
| 173 | 176 | protected function validate_plugin( $plugin ) { |
| 174 | 177 | if ( ! isset( $plugin) || empty( $plugin ) ) { |
| 175 | 178 | return new WP_Error( 'missing_plugin', __( 'You are required to specify a plugin to activate.', 'jetpack' ), 400 ); |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | * |
| 78 | 78 | * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html |
| 79 | 79 | * |
| 80 | - * @param $function string name of the function |
|
| 80 | + * @param string $function string name of the function |
|
| 81 | 81 | * @param $params array functions parameters |
| 82 | 82 | * |
| 83 | 83 | * @return void |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | * |
| 95 | 95 | * @see https://www.elastic.co/guide/en/elasticsearch/guide/current/decay-functions.html |
| 96 | 96 | * |
| 97 | - * @param $function string name of the decay function - linear, exp, or gauss |
|
| 97 | + * @param string $function string name of the decay function - linear, exp, or gauss |
|
| 98 | 98 | * @param $params array The decay functions parameters, passed to ES directly |
| 99 | 99 | * |
| 100 | 100 | * @return void |
@@ -124,6 +124,9 @@ discard block |
||
| 124 | 124 | $this->query_bool_boost = $boost; |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | + /** |
|
| 128 | + * @param string $aggs_name |
|
| 129 | + */ |
|
| 127 | 130 | public function add_aggs( $aggs_name, $aggs ) { |
| 128 | 131 | $this->aggs_query = true; |
| 129 | 132 | $this->aggs[$aggs_name] = $aggs; |
@@ -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 | |