Completed
Push — update/google-site-verificatio... ( f2b198...920ab9 )
by
unknown
18:16 queued 11:17
created
modules/protect/blocked-login-page.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -326,6 +326,9 @@
 block discarded – undo
326 326
 		return $contents;
327 327
 	}
328 328
 
329
+	/**
330
+	 * @param string $message
331
+	 */
329 332
 	function display_page( $title, $message, $back_button = false, $recovery_form = false ) {
330 333
 
331 334
 		if ( ! headers_sent() ) {
Please login to merge, or discard this patch.
sync/class.jetpack-sync-module-users.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -94,6 +94,9 @@
 block discarded – undo
94 94
 		return $user;
95 95
 	}
96 96
 
97
+	/**
98
+	 * @param WP_User|null $user
99
+	 */
97 100
 	public function expand_user( $user ) {
98 101
 		if ( ! is_object( $user ) ) {
99 102
 			return null;
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
@@ -201,7 +201,7 @@
 block discarded – undo
201 201
 	 * should be notified, overriding the site setting.
202 202
 	 *
203 203
 	 * @param int $comment_id Comment ID.
204
-	 * @return true Always returns true.
204
+	 * @return boolean Always returns true.
205 205
 	 */
206 206
 	function wp_notify_moderator( $comment_id ) {
207 207
 		global $wpdb;
Please login to merge, or discard this patch.
_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-parser.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -147,6 +147,10 @@
 block discarded – undo
147 147
 	 * Take a list of field prefixes and expand them for multi-lingual
148 148
 	 * with the provided boostings.
149 149
 	 */
150
+
151
+	/**
152
+	 * @param string[] $additional_fields
153
+	 */
150 154
 	public function merge_ml_fields( $fields2boosts, $additional_fields ) {
151 155
 		$flds = array();
152 156
 		foreach( $fields2boosts as $f => $b ) {
Please login to merge, or discard this patch.
_inc/lib/class.jetpack-search-performance-logger.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -58,6 +58,10 @@
 block discarded – undo
58 58
 		return $query->is_main_query() && $query->is_search();
59 59
 	}
60 60
 
61
+	/**
62
+	 * @param double $duration
63
+	 * @param boolean $was_jetpack_search
64
+	 */
61 65
 	private function record_query_time( $duration, $was_jetpack_search ) {
62 66
 		$this->stats[] = array( $was_jetpack_search, intval( $duration * 1000 ) );
63 67
 	}
Please login to merge, or discard this patch.
modules/search/class.jetpack-search-helpers.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,6 @@
 block discarded – undo
76 76
 	 * @since 5.8.0
77 77
 	 *
78 78
 	 * @param string|array $key   Query key or keys to remove.
79
-	 * @param bool|string  $query Optional. A URL to act upon.  Defaults to the current search URL.
80 79
 	 *
81 80
 	 * @return string New URL query string (unescaped).
82 81
 	 */
Please login to merge, or discard this patch.
_inc/lib/markdown/extra.php 1 patch
Doc Comments   +27 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
  *
70 70
  * @since 5.9
71 71
  *
72
- * @return string Length of the multibyte string
72
+ * @return integer Length of the multibyte string
73 73
  *
74 74
  */
75 75
 function jetpack_utf8_strlen( $text ) {
@@ -169,6 +169,9 @@  discard block
 block discarded – undo
169 169
 	}
170 170
 
171 171
 
172
+	/**
173
+	 * @param string $text
174
+	 */
172 175
 	function transform($text) {
173 176
 	#
174 177
 	# Main function. Performs some preprocessing on the input text
@@ -903,6 +906,10 @@  discard block
 block discarded – undo
903 906
 
904 907
 	public $list_level = 0;
905 908
 
909
+	/**
910
+	 * @param string $list_str
911
+	 * @param string $marker_any_re
912
+	 */
906 913
 	function processListItems($list_str, $marker_any_re) {
907 914
 	#
908 915
 	#	Process the contents of a single ordered or unordered list, splitting it
@@ -1006,6 +1013,9 @@  discard block
 block discarded – undo
1006 1013
 	}
1007 1014
 
1008 1015
 
1016
+	/**
1017
+	 * @param string $code
1018
+	 */
1009 1019
 	function makeCodeSpan($code) {
1010 1020
 	#
1011 1021
 	# Create a code span markup for $code. Called from handleSpanToken.
@@ -1498,6 +1508,9 @@  discard block
 block discarded – undo
1498 1508
 	# hanlde UTF-8 if the default function does not exist.
1499 1509
 	public $utf8_strlen = 'mb_strlen';
1500 1510
 
1511
+	/**
1512
+	 * @param string $text
1513
+	 */
1501 1514
 	function detab($text) {
1502 1515
 	#
1503 1516
 	# Replace tabs with the appropriate amount of space.
@@ -2042,6 +2055,12 @@  discard block
 block discarded – undo
2042 2055
 
2043 2056
 		return array($parsed, $text);
2044 2057
 	}
2058
+
2059
+	/**
2060
+	 * @param string $text
2061
+	 * @param string $hash_method
2062
+	 * @param boolean $md_attr
2063
+	 */
2045 2064
 	function _hashHTMLBlocks_inHTML($text, $hash_method, $md_attr) {
2046 2065
 	#
2047 2066
 	# Parse HTML, calling _HashHTMLBlocks_InMarkdown for block tags.
@@ -2706,6 +2725,9 @@  discard block
 block discarded – undo
2706 2725
 	}
2707 2726
 
2708 2727
 
2728
+	/**
2729
+	 * @return string
2730
+	 */
2709 2731
 	function processDefListItems($list_str) {
2710 2732
 	#
2711 2733
 	#	Process the contents of a single definition list, splitting it
@@ -2817,6 +2839,10 @@  discard block
 block discarded – undo
2817 2839
 
2818 2840
 		return $text;
2819 2841
 	}
2842
+
2843
+	/**
2844
+	 * @param string[] $matches
2845
+	 */
2820 2846
 	function _doFencedCodeBlocks_callback($matches) {
2821 2847
 		$classname =& $matches[2];
2822 2848
 		$attrs     =& $matches[3];
Please login to merge, or discard this patch.
docker/mu-plugins/debug.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -40,6 +40,7 @@
 block discarded – undo
40 40
  * l($arg1, $arg2) will call l($arg1) and l($arg2) and then return $arg1.
41 41
  *
42 42
  * A null argument will log the file and line number of the l() call.
43
+ * @param string $stuff
43 44
  */
44 45
 function l( $stuff = null ) {
45 46
 	// Do nothing when debugging is off
Please login to merge, or discard this patch.
woocommerce-analytics/classes/wp-woocommerce-analytics-universal.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
 	/**
293 293
 	 * Get the current user id
294 294
 	 *
295
-	 * @return int
295
+	 * @return string
296 296
 	 */
297 297
 	public function get_user_id() {
298 298
 		if ( is_user_logged_in() ) {
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 	/**
326 326
 	 * @param $product_id
327 327
 	 * @param $quantity
328
-	 * @param $event
328
+	 * @param string $event
329 329
 	 */
330 330
 	public function capture_event_in_session_data( $product_id, $quantity, $event ) {
331 331
 
Please login to merge, or discard this patch.