Completed
Push — update/react-router-5 ( cc5929...ed4573 )
by Yaroslav
06:26
created
modules/wordads/php/api.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	/**
69 69
 	 * Returns status of WordAds approval.
70 70
 	 *
71
-	 * @return boolean true if site is WordAds approved
71
+	 * @return string true if site is WordAds approved
72 72
 	 *
73 73
 	 * @since 4.5.0
74 74
 	 */
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	/**
84 84
 	 * Returns status of WordAds active.
85 85
 	 *
86
-	 * @return boolean true if ads are active on site
86
+	 * @return string true if ads are active on site
87 87
 	 *
88 88
 	 * @since 4.5.0
89 89
 	 */
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	/**
99 99
 	 * Returns status of WordAds house ads.
100 100
 	 *
101
-	 * @return boolean true if WP.com house ads should be shown
101
+	 * @return string true if WP.com house ads should be shown
102 102
 	 *
103 103
 	 * @since 4.5.0
104 104
 	 */
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 	/**
115 115
 	 * Returns whether or not this site is safe to run ads on.
116 116
 	 *
117
-	 * @return boolean true if ads shown not be shown on this site.
117
+	 * @return string true if ads shown not be shown on this site.
118 118
 	 *
119 119
 	 * @since 6.5.0
120 120
 	 */
Please login to merge, or discard this patch.
modules/wordads/wordads.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	 * Convenience function for grabbing options from params->options
50 50
 	 *
51 51
 	 * @param  string $option the option to grab
52
-	 * @param  mixed  $default (optional)
52
+	 * @param  boolean  $default (optional)
53 53
 	 * @return option or $default if not set
54 54
 	 *
55 55
 	 * @since 4.5.0
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
 	/**
495 495
 	 * Check the reasons to bail before we attempt to insert ads.
496 496
 	 *
497
-	 * @return true if we should bail (don't insert ads)
497
+	 * @return boolean if we should bail (don't insert ads)
498 498
 	 *
499 499
 	 * @since 4.5.0
500 500
 	 */
Please login to merge, or discard this patch.
modules/tiled-gallery/tiled-gallery/tiled-gallery-layout.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -9,6 +9,11 @@  discard block
 block discarded – undo
9 9
 	public $link;
10 10
 	public $grayscale;
11 11
 	public $columns;
12
+
13
+	/**
14
+	 * @param boolean $grayscale
15
+	 * @param integer $columns
16
+	 */
12 17
 	public function __construct( $attachments, $link, $grayscale, $columns ) {
13 18
 
14 19
 		$this->attachments           = $attachments;
@@ -39,6 +44,9 @@  discard block
 block discarded – undo
39 44
 		return $html;
40 45
 	}
41 46
 
47
+	/**
48
+	 * @param string $name
49
+	 */
42 50
 	private function template( $name, $context = null ) {
43 51
 		if ( ! in_array( $name, self::$templates ) ) {
44 52
 			return;
Please login to merge, or discard this patch.
modules/theme-tools/featured-content.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -699,7 +699,7 @@
 block discarded – undo
699 699
 	 * handlers should be copied when the theme context is loaded by the REST API.
700 700
 	 *
701 701
 	 * @param array $copy_dirs Copy paths with actions to be copied
702
-	 * @return array Copy paths with featured content plugin
702
+	 * @return string[] Copy paths with featured content plugin
703 703
 	 */
704 704
 	function wpcom_rest_api_featured_content_copy_plugin_actions( $copy_dirs ) {
705 705
 		$copy_dirs[] = __FILE__;
Please login to merge, or discard this patch.
modules/theme-tools/infinite-scroll.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,6 @@
 block discarded – undo
40 40
 /**
41 41
  * Prevent IS from being activated if theme doesn't support it
42 42
  *
43
- * @param bool $can_activate
44 43
  * @filter jetpack_can_activate_infinite-scroll
45 44
  * @return bool
46 45
  */
Please login to merge, or discard this patch.
modules/theme-tools/responsive-videos.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@
 block discarded – undo
29 29
 /**
30 30
  * Adds a wrapper to videos and enqueue script
31 31
  *
32
+ * @param string $html
32 33
  * @return string
33 34
  */
34 35
 function jetpack_responsive_videos_embed_html( $html ) {
Please login to merge, or discard this patch.
modules/sitemaps/sitemap-buffer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 	 *
155 155
 	 * @since 5.3.0
156 156
 	 *
157
-	 * @param array $array The item to be added.
157
+	 * @param string $array The item to be added.
158 158
 	 *
159 159
 	 * @return bool True if the append succeeded, False if not.
160 160
 	 */
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
 	 * @param DOMElement  $parent (optional) an element to which new children should be added.
284 284
 	 * @param DOMDocument $root (optional) the parent document.
285 285
 	 *
286
-	 * @return string|DOMDocument The rendered XML string or an object if root element is specified.
286
+	 * @return null|DOMNode The rendered XML string or an object if root element is specified.
287 287
 	 */
288 288
 	protected function array_to_xml_string( $array, $parent = null, $root = null ) {
289 289
 		$return_string = false;
Please login to merge, or discard this patch.
_inc/lib/class.jetpack-keyring-service-helper.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -100,6 +100,10 @@  discard block
 block discarded – undo
100 100
 		), menu_page_url( 'sharing', false ) );
101 101
 	}
102 102
 
103
+	/**
104
+	 * @param string $service_name
105
+	 * @param string $for
106
+	 */
103 107
 	static function refresh_url( $service_name, $for ) {
104 108
 		return add_query_arg( array(
105 109
 			'action'   => 'request',
@@ -111,6 +115,10 @@  discard block
 block discarded – undo
111 115
 		), admin_url( 'options-general.php?page=sharing' ) );
112 116
 	}
113 117
 
118
+	/**
119
+	 * @param string $service_name
120
+	 * @param string $id
121
+	 */
114 122
 	static function disconnect_url( $service_name, $id ) {
115 123
 		return add_query_arg( array(
116 124
 			'action'   => 'delete',
Please login to merge, or discard this patch.
modules/protect/math-fallback.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 		/**
27 27
 		 * Verifies that a user answered the math problem correctly while logging in.
28 28
 		 *
29
-		 * @return bool Returns true if the math is correct
29
+		 * @return boolean|null Returns true if the math is correct
30 30
 		 * @throws Error if insuffient $_POST variables are present.
31 31
 		 * @throws Error message if the math is wrong
32 32
 		 */
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 		/**
110 110
 		 * Requires a user to solve a simple equation. Added to any WordPress login form.
111 111
 		 *
112
-		 * @return VOID outputs html
112
+		 * @return string|null outputs html
113 113
 		 */
114 114
 		static function math_form() {
115 115
 			// Check if jpp_math_pass cookie is set and it matches valid transient
Please login to merge, or discard this patch.