@@ -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 ); |
@@ -339,6 +339,9 @@ discard block |
||
| 339 | 339 | do_action( 'sharing_bump_stats', array( 'service' => $this, 'post' => $post ) ); |
| 340 | 340 | } |
| 341 | 341 | |
| 342 | + /** |
|
| 343 | + * @param string $name |
|
| 344 | + */ |
|
| 342 | 345 | public function js_dialog( $name, $params = array() ) { |
| 343 | 346 | if ( true !== $this->open_link_in_new ) { |
| 344 | 347 | return; |
@@ -1458,6 +1461,9 @@ discard block |
||
| 1458 | 1461 | return __( 'Pinterest', 'jetpack' ); |
| 1459 | 1462 | } |
| 1460 | 1463 | |
| 1464 | + /** |
|
| 1465 | + * @return string |
|
| 1466 | + */ |
|
| 1461 | 1467 | public function get_image( $post ) { |
| 1462 | 1468 | if ( class_exists( 'Jetpack_PostImages' ) ) { |
| 1463 | 1469 | $image = Jetpack_PostImages::get_image( $post->ID, array( 'fallback_to_avatars' => true ) ); |
@@ -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; |
@@ -378,7 +378,7 @@ discard block |
||
| 378 | 378 | * |
| 379 | 379 | * @since 8.0.0 |
| 380 | 380 | * |
| 381 | - * @param array $url The parsed URL of the shortcode. |
|
| 381 | + * @param string|false $url The parsed URL of the shortcode. |
|
| 382 | 382 | * |
| 383 | 383 | * @return array|false The query args of the URL, or false. |
| 384 | 384 | */ |
@@ -452,7 +452,7 @@ discard block |
||
| 452 | 452 | * |
| 453 | 453 | * @param array $query_args The query args of the URL. |
| 454 | 454 | * |
| 455 | - * @return array The width and height of the shortcode. |
|
| 455 | + * @return integer[] The width and height of the shortcode. |
|
| 456 | 456 | */ |
| 457 | 457 | function jetpack_shortcode_youtube_dimensions( $query_args ) { |
| 458 | 458 | global $content_width; |
@@ -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; |