@@ -682,6 +682,9 @@ |
||
682 | 682 | $this->options_save_other( 'linkedin' ); |
683 | 683 | } |
684 | 684 | |
685 | + /** |
|
686 | + * @param string $service_name |
|
687 | + */ |
|
685 | 688 | function options_save_other( $service_name ) { |
686 | 689 | // Nonce check |
687 | 690 | check_admin_referer( 'save_' . $service_name . '_token_' . $_REQUEST['connection'] ); |
@@ -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 |
@@ -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 ) { |
@@ -143,7 +143,7 @@ |
||
143 | 143 | /** |
144 | 144 | * |
145 | 145 | * Return Whether boolean cached threats exist or null if the state is unknown. |
146 | - * * @return boolean or null |
|
146 | + * * @return null|boolean or null |
|
147 | 147 | */ |
148 | 148 | public function has_threats() { |
149 | 149 | $scan_state = get_transient( 'jetpack_scan_state' ); |
@@ -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 | */ |
@@ -68,7 +68,7 @@ |
||
68 | 68 | /** |
69 | 69 | * Get default config for this reCAPTCHA instance. |
70 | 70 | * |
71 | - * @return array Default config |
|
71 | + * @return string Default config |
|
72 | 72 | */ |
73 | 73 | public function get_default_config() { |
74 | 74 | return array( |
@@ -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 ); |
@@ -231,7 +231,7 @@ |
||
231 | 231 | /** |
232 | 232 | * Filter and replace HTML element. |
233 | 233 | * |
234 | - * @param array $matches Array of matches. |
|
234 | + * @param string[] $matches Array of matches. |
|
235 | 235 | * @param string $orig_html Original html. Returned if no results are found via $matches processing. |
236 | 236 | */ |
237 | 237 | private static function dispatch( $matches, $orig_html = null ) { |
@@ -145,7 +145,7 @@ |
||
145 | 145 | * @param string $url URL of the content to be embedded. |
146 | 146 | * @param array $atts Shortcode attributes. |
147 | 147 | * |
148 | - * @return array $params Array of parameters to be used in Instagram query. |
|
148 | + * @return string $params Array of parameters to be used in Instagram query. |
|
149 | 149 | */ |
150 | 150 | function jetpack_instagram_get_allowed_parameters( $url, $atts = array() ) { |
151 | 151 | global $content_width; |