@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | |
46 | 46 | /** |
47 | 47 | * Returns status of WordAds approval. |
48 | - * @return boolean true if site is WordAds approved |
|
48 | + * @return string true if site is WordAds approved |
|
49 | 49 | * |
50 | 50 | * @since 4.5.0 |
51 | 51 | */ |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | /** |
61 | 61 | * Returns status of WordAds active. |
62 | - * @return boolean true if ads are active on site |
|
62 | + * @return string true if ads are active on site |
|
63 | 63 | * |
64 | 64 | * @since 4.5.0 |
65 | 65 | */ |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | |
74 | 74 | /** |
75 | 75 | * Returns status of WordAds house ads. |
76 | - * @return boolean true if WP.com house ads should be shown |
|
76 | + * @return string true if WP.com house ads should be shown |
|
77 | 77 | * |
78 | 78 | * @since 4.5.0 |
79 | 79 | */ |
@@ -90,6 +90,9 @@ discard block |
||
90 | 90 | return $html; |
91 | 91 | } |
92 | 92 | |
93 | + /** |
|
94 | + * @param string $regexp |
|
95 | + */ |
|
93 | 96 | static public function regexp_entities( $regexp ) { |
94 | 97 | return preg_replace( |
95 | 98 | '/\[\^&([^\]]+)\]\*\+/', |
@@ -128,6 +131,9 @@ discard block |
||
128 | 131 | return self::dispatch( $matches ); |
129 | 132 | } |
130 | 133 | |
134 | + /** |
|
135 | + * @param string[] $matches |
|
136 | + */ |
|
131 | 137 | static function dispatch( $matches ) { |
132 | 138 | $html = preg_replace( '%�*58;//%', '://', $matches[0] ); |
133 | 139 | $attrs = self::get_attrs( $html ); |
@@ -138,6 +138,7 @@ |
||
138 | 138 | /** |
139 | 139 | * Returns a class value, `output-the-content` by default. |
140 | 140 | * Used for themes with a 'Mixed' Blog Display so we can tell which output is by default. |
141 | + * @param string $new_class |
|
141 | 142 | */ |
142 | 143 | function jetpack_the_content_customizer_class( $new_class = null ) { |
143 | 144 | static $class; |
@@ -298,6 +298,9 @@ discard block |
||
298 | 298 | return $sync_modules; |
299 | 299 | } |
300 | 300 | |
301 | + /** |
|
302 | + * @return string |
|
303 | + */ |
|
301 | 304 | static function sanitize_filtered_sync_cron_schedule( $schedule ) { |
302 | 305 | $schedule = sanitize_key( $schedule ); |
303 | 306 | $schedules = wp_get_schedules(); |
@@ -333,6 +336,9 @@ discard block |
||
333 | 336 | ) ); |
334 | 337 | } |
335 | 338 | |
339 | + /** |
|
340 | + * @param string $hook |
|
341 | + */ |
|
336 | 342 | static function maybe_schedule_sync_cron( $schedule, $hook ) { |
337 | 343 | if ( ! $hook ) { |
338 | 344 | return; |
@@ -163,7 +163,7 @@ |
||
163 | 163 | /** |
164 | 164 | * Iterates through expected items ( plugins or themes ) and compares them to actual results. |
165 | 165 | * |
166 | - * @param $items 'plugin' or 'theme' |
|
166 | + * @param string $items 'plugin' or 'theme' |
|
167 | 167 | */ |
168 | 168 | private function log_items( $items ) { |
169 | 169 | if ( ! isset( $this->expected[ $items ] ) ) { |
@@ -64,6 +64,7 @@ |
||
64 | 64 | /** |
65 | 65 | * Updates user data |
66 | 66 | * |
67 | + * @param integer $user_id |
|
67 | 68 | * @return (array) |
68 | 69 | */ |
69 | 70 | public function update_user( $user_id, $blog_id ) { |
@@ -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 ) ) { |