Completed
Push — update/import-sync-detection ( 8808a0...8bf4b0 )
by
unknown
26:46 queued 19:46
created
3rd-party/domain-mapping.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -93,14 +93,24 @@
 block discarded – undo
93 93
 	 * So that we can test.
94 94
 	 */
95 95
 
96
+	/**
97
+	 * @param string $class
98
+	 * @param string $method
99
+	 */
96 100
 	public function method_exists( $class, $method ) {
97 101
 		return method_exists( $class, $method );
98 102
 	}
99 103
 
104
+	/**
105
+	 * @param string $class
106
+	 */
100 107
 	public function class_exists( $class ) {
101 108
 		return class_exists( $class );
102 109
 	}
103 110
 
111
+	/**
112
+	 * @param string $function
113
+	 */
104 114
 	public function function_exists( $function ) {
105 115
 		return function_exists( $function );
106 116
 	}
Please login to merge, or discard this patch.
class.jetpack-autoupdate.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
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 ] ) ) {
Please login to merge, or discard this patch.
json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -227,6 +227,9 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
modules/custom-post-types/portfolios.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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 ) ) {
Please login to merge, or discard this patch.
modules/custom-post-types/testimonial.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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 ) ) {
Please login to merge, or discard this patch.
modules/protect/transient-cleanup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
modules/shortcodes/archiveorg.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
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/' ) ) {
Please login to merge, or discard this patch.
modules/shortcodes/googleapps.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
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' ) ) {
Please login to merge, or discard this patch.
modules/sso/class.jetpack-sso-helpers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@
 block discarded – undo
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 ) ) {
Please login to merge, or discard this patch.