@@ -227,6 +227,9 @@ |
||
227 | 227 | ); |
228 | 228 | } |
229 | 229 | |
230 | + /** |
|
231 | + * @param Jetpack_Sync_Queue $queue |
|
232 | + */ |
|
230 | 233 | protected function get_buffer( $queue, $number_of_items ) { |
231 | 234 | $start = time(); |
232 | 235 | $max_duration = 5; // this will try to get the buffer |
@@ -1387,7 +1387,6 @@ discard block |
||
1387 | 1387 | * |
1388 | 1388 | * @see ::style() |
1389 | 1389 | * @internal |
1390 | - * @param bool $style |
|
1391 | 1390 | */ |
1392 | 1391 | static function _style_on() { |
1393 | 1392 | return self::style( true ); |
@@ -1526,6 +1525,7 @@ discard block |
||
1526 | 1525 | * |
1527 | 1526 | * @param int $feedback_id |
1528 | 1527 | * @param object Grunion_Contact_Form $form |
1528 | + * @param Grunion_Contact_Form $form |
|
1529 | 1529 | * |
1530 | 1530 | * @return string $message |
1531 | 1531 | */ |
@@ -1630,7 +1630,7 @@ discard block |
||
1630 | 1630 | * |
1631 | 1631 | * @param array $attributes Key => Value pairs as parsed by shortcode_parse_atts() |
1632 | 1632 | * @param string|null $content The shortcode's inner content: [contact-field]$content[/contact-field] |
1633 | - * @return HTML for the contact form field |
|
1633 | + * @return string for the contact form field |
|
1634 | 1634 | */ |
1635 | 1635 | static function parse_contact_field( $attributes, $content ) { |
1636 | 1636 | // Don't try to parse contact form fields if not inside a contact form |
@@ -488,7 +488,7 @@ discard block |
||
488 | 488 | * Our [portfolio] shortcode. |
489 | 489 | * Prints Portfolio data styled to look good on *any* theme. |
490 | 490 | * |
491 | - * @return portfolio_shortcode_html |
|
491 | + * @return string |
|
492 | 492 | */ |
493 | 493 | static function portfolio_shortcode( $atts ) { |
494 | 494 | // Default attributes |
@@ -621,7 +621,7 @@ discard block |
||
621 | 621 | * The Portfolio shortcode loop. |
622 | 622 | * |
623 | 623 | * @todo add theme color styles |
624 | - * @return html |
|
624 | + * @return string |
|
625 | 625 | */ |
626 | 626 | static function portfolio_shortcode_html( $atts ) { |
627 | 627 | |
@@ -713,6 +713,7 @@ discard block |
||
713 | 713 | /** |
714 | 714 | * Individual project class |
715 | 715 | * |
716 | + * @param integer $portfolio_index_number |
|
716 | 717 | * @return string |
717 | 718 | */ |
718 | 719 | static function get_project_class( $portfolio_index_number, $columns ) { |
@@ -820,7 +821,7 @@ discard block |
||
820 | 821 | /** |
821 | 822 | * Displays the author of the current portfolio project. |
822 | 823 | * |
823 | - * @return html |
|
824 | + * @return string |
|
824 | 825 | */ |
825 | 826 | static function get_project_author() { |
826 | 827 | $html = '<div class="project-author">'; |
@@ -837,7 +838,7 @@ discard block |
||
837 | 838 | /** |
838 | 839 | * Display the featured image if it's available |
839 | 840 | * |
840 | - * @return html |
|
841 | + * @return string|null |
|
841 | 842 | */ |
842 | 843 | static function get_portfolio_thumbnail_link( $post_id ) { |
843 | 844 | if ( has_post_thumbnail( $post_id ) ) { |
@@ -525,7 +525,7 @@ discard block |
||
525 | 525 | * Our [testimonial] shortcode. |
526 | 526 | * Prints Testimonial data styled to look good on *any* theme. |
527 | 527 | * |
528 | - * @return jetpack_testimonial_shortcode_html |
|
528 | + * @return string |
|
529 | 529 | */ |
530 | 530 | static function jetpack_testimonial_shortcode( $atts ) { |
531 | 531 | // Default attributes |
@@ -588,7 +588,7 @@ discard block |
||
588 | 588 | /** |
589 | 589 | * The Testimonial shortcode loop. |
590 | 590 | * |
591 | - * @return html |
|
591 | + * @return string |
|
592 | 592 | */ |
593 | 593 | static function jetpack_testimonial_shortcode_html( $atts ) { |
594 | 594 | // Default query arguments |
@@ -662,6 +662,7 @@ discard block |
||
662 | 662 | /** |
663 | 663 | * Individual testimonial class |
664 | 664 | * |
665 | + * @param integer $testimonial_index_number |
|
665 | 666 | * @return string |
666 | 667 | */ |
667 | 668 | static function get_testimonial_class( $testimonial_index_number, $columns, $image ) { |
@@ -708,7 +709,7 @@ discard block |
||
708 | 709 | /** |
709 | 710 | * Display the featured image if it's available |
710 | 711 | * |
711 | - * @return html |
|
712 | + * @return string|null |
|
712 | 713 | */ |
713 | 714 | static function get_testimonial_thumbnail_link( $post_id ) { |
714 | 715 | if ( has_post_thumbnail( $post_id ) ) { |
@@ -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; |
@@ -42,6 +42,9 @@ discard block |
||
42 | 42 | return $this->id; |
43 | 43 | } |
44 | 44 | |
45 | + /** |
|
46 | + * @return string |
|
47 | + */ |
|
45 | 48 | public function get_share_url( $post_id ) { |
46 | 49 | /** |
47 | 50 | * Filter the sharing permalink. |
@@ -79,6 +82,9 @@ discard block |
||
79 | 82 | return false; |
80 | 83 | } |
81 | 84 | |
85 | + /** |
|
86 | + * @param string $url |
|
87 | + */ |
|
82 | 88 | public function get_link( $url, $text, $title, $query = '', $id = false ) { |
83 | 89 | $args = func_get_args(); |
84 | 90 | $klasses = array( 'share-' . $this->get_class(), 'sd-button' ); |
@@ -324,6 +330,9 @@ discard block |
||
324 | 330 | do_action( 'sharing_bump_stats', array( 'service' => $this, 'post' => $post ) ); |
325 | 331 | } |
326 | 332 | |
333 | + /** |
|
334 | + * @param string $name |
|
335 | + */ |
|
327 | 336 | public function js_dialog( $name, $params = array() ) { |
328 | 337 | if ( true !== $this->open_link_in_new ) { |
329 | 338 | return; |
@@ -1450,6 +1459,9 @@ discard block |
||
1450 | 1459 | return __( 'Pinterest', 'jetpack' ); |
1451 | 1460 | } |
1452 | 1461 | |
1462 | + /** |
|
1463 | + * @return string |
|
1464 | + */ |
|
1453 | 1465 | public function get_image( $post ) { |
1454 | 1466 | if ( class_exists( 'Jetpack_PostImages' ) ) { |
1455 | 1467 | $image = Jetpack_PostImages::get_image( $post->ID, array( 'fallback_to_avatars' => true ) ); |
@@ -101,7 +101,7 @@ |
||
101 | 101 | * |
102 | 102 | * @param string $content |
103 | 103 | * |
104 | - * @return mixed |
|
104 | + * @return string |
|
105 | 105 | */ |
106 | 106 | function jetpack_archiveorg_embed_to_shortcode( $content ) { |
107 | 107 | if ( ! is_string( $content ) || false === stripos( $content, 'archive.org/embed/' ) ) { |
@@ -45,7 +45,7 @@ |
||
45 | 45 | * |
46 | 46 | * @param string $content |
47 | 47 | * |
48 | - * @return mixed |
|
48 | + * @return string |
|
49 | 49 | */ |
50 | 50 | function googleapps_embed_to_shortcode( $content ) { |
51 | 51 | if ( ! is_string( $content ) || false === stripos( $content, '<iframe' ) && false === stripos( $content, '.google.com' ) ) { |
@@ -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 ) ) { |