Completed
Push — reorg/fix-build ( 009083...230c6d )
by
unknown
279:57 queued 271:30
created
projects/plugins/jetpack/_inc/lib/class.jetpack-password-checker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -410,7 +410,7 @@
 block discarded – undo
410 410
 	 *
411 411
 	 * @param Mixed $needle the needle.
412 412
 	 * @param array $haystack the haystack.
413
-	 * @return is the needle not in the haystack?
413
+	 * @return boolean the needle not in the haystack?
414 414
 	 */
415 415
 	protected function negative_in_array( $needle, $haystack ) {
416 416
 		if ( in_array( $needle, $haystack, true ) ) {
Please login to merge, or discard this patch.
plugins/jetpack/_inc/lib/class.jetpack-search-performance-logger.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -62,6 +62,10 @@
 block discarded – undo
62 62
 		return $query->is_main_query() && $query->is_search();
63 63
 	}
64 64
 
65
+	/**
66
+	 * @param double $duration
67
+	 * @param boolean $was_jetpack_search
68
+	 */
65 69
 	private function record_query_time( $duration, $was_jetpack_search ) {
66 70
 		$this->stats[] = array( $was_jetpack_search, (int) ( $duration * 1000 ) );
67 71
 	}
Please login to merge, or discard this patch.
projects/plugins/jetpack/_inc/lib/class.media.php 1 patch
Doc Comments   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 	/**
85 85
 	 * Return an array of allowed mime_type items used to upload a media file.
86 86
 	 *
87
-	 * @return array mime_type array
87
+	 * @return string[] mime_type array
88 88
 	 */
89 89
 	static function get_allowed_mime_types( $default_mime_types ) {
90 90
 		return array_unique( array_merge( $default_mime_types, array(
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
 	 * @param  object $media_item - media post object
253 253
 	 * @param  file $file - file recently added
254 254
 	 * @param  bool $has_original_media - condition is the original media has been already added
255
-	 * @return bool `true` if the item has been added. Otherwise `false`.
255
+	 * @return false|null `true` if the item has been added. Otherwise `false`.
256 256
 	 */
257 257
 	public static function register_revision( $media_item, $file, $has_original_media ) {
258 258
 		if ( is_wp_error( $file ) || ! $has_original_media ) {
@@ -280,6 +280,9 @@  discard block
 block discarded – undo
280 280
 		return $original;
281 281
 	}
282 282
 
283
+	/**
284
+	 * @param string $pathname
285
+	 */
283 286
 	public static function delete_file( $pathname ) {
284 287
 		if ( ! file_exists( $pathname ) || ! is_file( $pathname ) ) {
285 288
 			// let's touch a fake file to try to `really` remove the media file
@@ -295,7 +298,7 @@  discard block
 block discarded – undo
295 298
 	 *
296 299
 	 * @param  number $media_id - media post ID
297 300
 	 * @param  string $filename - basename of the file ( name-of-file.ext )
298
-	 * @return bool `true` is the file has been removed, `false` if not.
301
+	 * @return boolean|null `true` is the file has been removed, `false` if not.
299 302
 	 */
300 303
 	private static function delete_media_history_file( $media_id, $filename ) {
301 304
 		$attached_path = get_attached_file( $media_id );
@@ -365,6 +368,7 @@  discard block
 block discarded – undo
365 368
 	 *
366 369
 	 * @param  number $media_id - media post ID
367 370
 	 * @param  number [$limit] - maximun amount of items. 20 as default.
371
+	 * @param integer $limit
368 372
 	 * @return array items removed from `revision_history`
369 373
 	 */
370 374
 	public static function limit_revision_history( $media_id, $limit = null) {
Please login to merge, or discard this patch.
projects/plugins/jetpack/_inc/lib/core-api/load-wpcom-endpoints.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
 	exit;
16 16
 }
17 17
 
18
+/**
19
+ * @param string $file_pattern
20
+ */
18 21
 function wpcom_rest_api_v2_load_plugin_files( $file_pattern ) {
19 22
 	$plugins = glob( dirname( __FILE__ ) . '/' . $file_pattern );
20 23
 
Please login to merge, or discard this patch.
projects/plugins/jetpack/_inc/lib/debugger/class-jetpack-cxn-test-base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
 	 * @param string $type  Test type, async or direct. Optional, direct all tests.
200 200
 	 * @param string $group Testing group to check status of. Optional, default all tests.
201 201
 	 *
202
-	 * @return true|array True if all tests pass. Array of failed tests.
202
+	 * @return boolean True if all tests pass. Array of failed tests.
203 203
 	 */
204 204
 	public function pass( $type = 'all', $group = 'all' ) {
205 205
 		$results = $this->raw_results( $type, $group );
Please login to merge, or discard this patch.
projects/plugins/jetpack/_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.
projects/plugins/jetpack/_inc/lib/icalendar-reader.php 1 patch
Doc Comments   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -699,8 +699,7 @@  discard block
 block discarded – undo
699 699
 	 * Render the events
700 700
 	 *
701 701
 	 * @param string $url (default: '')
702
-	 * @param string $context (default: 'widget') or 'shortcode'
703
-	 * @return mixed bool|string false on failure, rendered HTML string on success.
702
+	 * @return false|string bool|string false on failure, rendered HTML string on success.
704 703
 	 */
705 704
 	public function render( $url = '', $args = array() ) {
706 705
 
@@ -857,8 +856,7 @@  discard block
 block discarded – undo
857 856
  * Wrapper function for iCalendarReader->render()
858 857
  *
859 858
  * @param string $url (default: '')
860
- * @param string $context (default: 'widget') or 'shortcode'
861
- * @return mixed bool|string false on failure, rendered HTML string on success.
859
+ * @return false|string bool|string false on failure, rendered HTML string on success.
862 860
  */
863 861
 function icalendar_render_events( $url = '', $args = array() ) {
864 862
 	$ical = new iCalendarReader();
Please login to merge, or discard this patch.
jetpack/_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-builder.php 1 patch
Doc Comments   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 	 *
86 86
 	 * @param $function array A function structure to apply to the query
87 87
 	 *
88
-	 * @return void
88
+	 * @return Jetpack_WPES_Query_Builder
89 89
 	 */
90 90
 	public function add_weighting_function( $function ) {
91 91
 		$this->weighting_functions[] = $function;
@@ -100,10 +100,10 @@  discard block
 block discarded – undo
100 100
 	 *
101 101
 	 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html
102 102
 	 *
103
-	 * @param $function string name of the function
103
+	 * @param string $function string name of the function
104 104
 	 * @param $params array functions parameters
105 105
 	 *
106
-	 * @return void
106
+	 * @return Jetpack_WPES_Query_Builder
107 107
 	 */
108 108
 	public function add_function( $function, $params ) {
109 109
 		$this->functions[ $function ][] = $params;
@@ -119,10 +119,10 @@  discard block
 block discarded – undo
119 119
 	 *
120 120
 	 * @see https://www.elastic.co/guide/en/elasticsearch/guide/current/decay-functions.html
121 121
 	 *
122
-	 * @param $function string name of the decay function - linear, exp, or gauss
122
+	 * @param string $function string name of the decay function - linear, exp, or gauss
123 123
 	 * @param $params array The decay functions parameters, passed to ES directly
124 124
 	 *
125
-	 * @return void
125
+	 * @return Jetpack_WPES_Query_Builder
126 126
 	 */
127 127
 	public function add_decay( $function, $params ) {
128 128
 		$this->decays[ $function ][] = $params;
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	 *
138 138
 	 * @param $mode string name of how to score
139 139
 	 *
140
-	 * @return void
140
+	 * @return Jetpack_WPES_Query_Builder
141 141
 	 */
142 142
 	public function add_score_mode_to_functions( $mode='multiply' ) {
143 143
 		$this->functions_score_mode = $mode;
@@ -163,6 +163,9 @@  discard block
 block discarded – undo
163 163
 		return $this;
164 164
 	}
165 165
 
166
+	/**
167
+	 * @param string $aggs_name
168
+	 */
166 169
 	public function add_aggs( $aggs_name, $aggs ) {
167 170
 		$this->aggs_query = true;
168 171
 		$this->aggs[$aggs_name] = $aggs;
Please login to merge, or discard this patch.
projects/plugins/jetpack/_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.