Completed
Push — update/podcast-feed-detection ( 8d7eaf )
by
unknown
33:29 queued 24:22
created
modules/widgets/milestone/class-milestone-widget.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -595,7 +595,7 @@
 block discarded – undo
595 595
 	 *
596 596
 	 * @param array $dirty Unsantized data for the widget.
597 597
 	 *
598
-	 * @return array Santized data.
598
+	 * @return integer Santized data.
599 599
 	 */
600 600
 	public function sanitize_instance( $dirty ) {
601 601
 		$now = (int) current_time( 'timestamp' ); // phpcs:ignore WordPress.DateTime.CurrentTimeTimestamp.Requested
Please login to merge, or discard this patch.
_inc/lib/functions.wp-notify.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@
 block discarded – undo
228 228
  *
229 229
  * @param string $notify_moderator The value of the moderation_notify option.
230 230
  * @param int    $comment_id Comment ID.
231
- * @return boolean Returns false to shortcircuit the execution of wp_notify_moderator
231
+ * @return string|false Returns false to shortcircuit the execution of wp_notify_moderator
232 232
  */
233 233
 function jetpack_notify_moderator( $notify_moderator, $comment_id ) {
234 234
 
Please login to merge, or discard this patch.
packages/status/tests/php/test-status.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -294,7 +294,7 @@
 block discarded – undo
294 294
 	/**
295 295
 	 * Mock $wpdb->get_var() and make it return a certain value.
296 296
 	 *
297
-	 * @param mixed $return_value  Return value of the function.
297
+	 * @param integer $return_value  Return value of the function.
298 298
 	 *
299 299
 	 * PHPUnit\Framework\MockObject\MockObject The mock object.
300 300
 	 */
Please login to merge, or discard this patch.
_inc/lib/class-jetpack-podcast-helper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
 	 * Loads an RSS feed using `fetch_feed`.
151 151
 	 *
152 152
 	 * @param string $feed        The RSS feed URL to load.
153
-	 * @return SimplePie|WP_Error The RSS object or error.
153
+	 * @return string The RSS object or error.
154 154
 	 */
155 155
 	private static function load_feed( $feed ) {
156 156
 		add_action( 'wp_feed_options', array( __CLASS__, 'set_podcast_locator' ) );
Please login to merge, or discard this patch.