Completed
Push — add/tweetstorm-loading-fallbac... ( bc45d6...4a4093 )
by Jeremy
40:18 queued 32:16
created
wpcom-endpoints/class-wpcom-rest-api-v2-endpoint-external-media.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -297,7 +297,7 @@
 block discarded – undo
297 297
 	 * Returns a download URL, dealing with Google's long file names.
298 298
 	 *
299 299
 	 * @param array $guid Media information.
300
-	 * @return string|\WP_Error
300
+	 * @return string
301 301
 	 */
302 302
 	public function get_download_url( $guid ) {
303 303
 		$this->tmp_name = $guid['name'];
Please login to merge, or discard this patch.
modules/scan/class-admin-bar-notice.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
 	/**
144 144
 	 *
145 145
 	 * Return Whether boolean cached threats exist or null if the state is unknown.
146
-	 * * @return boolean or null
146
+	 * * @return null|boolean or null
147 147
 	 */
148 148
 	public function has_threats() {
149 149
 		$scan_state = get_transient( 'jetpack_scan_state' );
Please login to merge, or discard this patch.
modules/gravatar-hovercards.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
  * @param string $avatar The <img/> element of the avatar.
155 155
  * @param mixed $author User ID, email address, user login, comment object, user object, post object
156 156
  *
157
- * @return The <img/> element of the avatar.
157
+ * @return string <img/> element of the avatar.
158 158
  */
159 159
 function grofiles_get_avatar( $avatar, $author ) {
160 160
 	$is_amp = class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request();
Please login to merge, or discard this patch.
classes/class-jetpack-woocommerce-analytics-universal.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -310,7 +310,7 @@
 block discarded – undo
310 310
 	/**
311 311
 	 * Get the current user id
312 312
 	 *
313
-	 * @return int
313
+	 * @return string
314 314
 	 */
315 315
 	public function get_user_id() {
316 316
 		if ( is_user_logged_in() ) {
Please login to merge, or discard this patch.
modules/subscriptions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -514,7 +514,7 @@
 block discarded – undo
514 514
 	 * Send a synchronous XML-RPC subscribe to blog posts or subscribe to post comments request.
515 515
 	 *
516 516
 	 * @param string $email
517
-	 * @param array  $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts
517
+	 * @param integer  $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts
518 518
 	 * @param bool   $async    (optional) Should the subscription be performed asynchronously?  Defaults to true.
519 519
 	 *
520 520
 	 * @return true|WP_Error true on success
Please login to merge, or discard this patch.
docker/mu-plugins/debug.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
  *
39 39
  * A null argument will log the file and line number of the l() call.
40 40
  *
41
- * @param mixed $stuff Information to log.
41
+ * @param string $stuff Information to log.
42 42
  */
43 43
 function l( $stuff = null ) {
44 44
 	// Do nothing when debugging is off.
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
  *
167 167
  * @param string $name Timer name.
168 168
  *
169
- * @return mixed void or elapsed time.
169
+ * @return null|double void or elapsed time.
170 170
  */
171 171
 function e( $name = '' ) {
172 172
 	static $times = array();
Please login to merge, or discard this patch.
packages/analyzer/src/class-declarations.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@
 block discarded – undo
33 33
 		}
34 34
 	}
35 35
 
36
+	/**
37
+	 * @param string $root
38
+	 */
36 39
 	public function scan_dir( $root, $exclude = array() ) {
37 40
 
38 41
 		if ( is_null( $exclude ) || ! is_array( $exclude ) ) {
Please login to merge, or discard this patch.
packages/analyzer/src/class-differences.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
 
10 10
 class Differences extends PersistentList {
11 11
 
12
+	/**
13
+	 * @param string $path
14
+	 */
12 15
 	private function slashit( $path ) {
13 16
 		$path .= ( substr( $path, -1 ) == '/' ? '' : '/' );
14 17
 		return $path;
Please login to merge, or discard this patch.
packages/analyzer/src/class-invocations.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@
 block discarded – undo
37 37
 		}
38 38
 	}
39 39
 
40
+	/**
41
+	 * @param string $root
42
+	 */
40 43
 	public function scan_dir( $root, $exclude = array() ) {
41 44
 		$filter = function ( $file, $key, $iterator ) use ( $exclude ) {
42 45
 			if ( $iterator->hasChildren() && ! in_array( $file->getFilename(), $exclude ) ) {
Please login to merge, or discard this patch.