@@ -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; |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | /** |
143 | 143 | * Plugin options getter |
144 | 144 | * |
145 | - * @param string|array $option Option name. |
|
145 | + * @param string $option Option name. |
|
146 | 146 | * @param mixed $default Default value. |
147 | 147 | * |
148 | 148 | * @return mixed Option value |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * |
159 | 159 | * @param string $url Soundcloud URL. |
160 | 160 | * |
161 | - * @return boolean |
|
161 | + * @return integer |
|
162 | 162 | */ |
163 | 163 | function soundcloud_url_has_tracklist( $url ) { |
164 | 164 | return preg_match( '/^(.+?)\/(sets|groups|playlists)\/(.+?)$/', $url ); |
@@ -44,7 +44,7 @@ |
||
44 | 44 | * @param array $attr The attributes of the shortcode. |
45 | 45 | * @param array $old_attr Optional array of attributes from the old shortcode format. |
46 | 46 | * |
47 | - * @return array Width and height. |
|
47 | + * @return integer[] Width and height. |
|
48 | 48 | */ |
49 | 49 | function jetpack_shortcode_get_vimeo_dimensions( $attr, $old_attr = array() ) { |
50 | 50 | global $content_width; |