Completed
Push — add/cli-block-generation ( f5514b )
by
unknown
124:39 queued 117:39
created
_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.
_inc/class.jetpack-provision.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -249,6 +249,9 @@
 block discarded – undo
249 249
 		}
250 250
 	}
251 251
 
252
+	/**
253
+	 * @param string $access_token
254
+	 */
252 255
 	private static function verify_token( $access_token ) {
253 256
 		$request = array(
254 257
 			'headers' => array(
Please login to merge, or discard this patch.
modules/sharedaddy/sharing-sources.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@  discard block
 block discarded – undo
42 42
 		return $this->id;
43 43
 	}
44 44
 
45
+	/**
46
+	 * @return string
47
+	 */
45 48
 	public function get_share_url( $post_id ) {
46 49
 		/**
47 50
 		 * Filter the sharing permalink.
@@ -324,6 +327,9 @@  discard block
 block discarded – undo
324 327
 		do_action( 'sharing_bump_stats', array( 'service' => $this, 'post' => $post ) );
325 328
 	}
326 329
 
330
+	/**
331
+	 * @param string $name
332
+	 */
327 333
 	public function js_dialog( $name, $params = array() ) {
328 334
 		if ( true !== $this->open_link_in_new ) {
329 335
 			return;
@@ -1463,6 +1469,9 @@  discard block
 block discarded – undo
1463 1469
 		return __( 'Pinterest', 'jetpack' );
1464 1470
 	}
1465 1471
 
1472
+	/**
1473
+	 * @return string
1474
+	 */
1466 1475
 	public function get_image( $post ) {
1467 1476
 		if ( class_exists( 'Jetpack_PostImages' ) ) {
1468 1477
 			$image = Jetpack_PostImages::get_image( $post->ID, array( 'fallback_to_avatars' => true ) );
Please login to merge, or discard this patch.
json-endpoints/class.wpcom-json-api-list-post-type-taxonomies-endpoint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -75,6 +75,9 @@
 block discarded – undo
75 75
 		);
76 76
 	}
77 77
 
78
+	/**
79
+	 * @param string $post_type
80
+	 */
78 81
 	protected function localize_initial_taxonomies( $post_type ) {
79 82
 		/** This filter is documented in jetpack/json-endpoints/class.wpcom-json-api-list-post-types-endpoint.php */
80 83
 		if ( ! apply_filters( 'rest_api_localize_response', false ) ) {
Please login to merge, or discard this patch.
sal/class.json-api-site-jetpack.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -177,6 +177,9 @@
 block discarded – undo
177 177
 		return true;
178 178
 	}
179 179
 
180
+	/**
181
+	 * @param string $role
182
+	 */
180 183
 	function current_user_can( $role ) {
181 184
 		return current_user_can( $role );
182 185
 	}
Please login to merge, or discard this patch.
json-endpoints/class.wpcom-json-api-edit-media-v1-2-endpoint.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 	 * Update the media post grabbing the post values from
102 102
 	 * the `attrs` parameter
103 103
 	 *
104
-	 * @param  {Number} $media_id - post media ID
104
+	 * @param  integer $media_id - post media ID
105 105
 	 * @param  {Object} $attrs - `attrs` parameter sent from the client in the request body
106 106
 	 * @return
107 107
 	 */
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 	 * Save the given temporal file in a local folder.
203 203
 	 *
204 204
 	 * @param  {Array} $file_array
205
-	 * @param  {Number} $media_id
205
+	 * @param  integer $media_id
206 206
 	 * @return {Array|WP_Error} An array with information about the new file saved or a WP_Error is something went wrong.
207 207
 	 */
208 208
 	private function save_temporary_file( $file_array, $media_id ) {
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
 	/**
278 278
 	 * Get the image from a remote url and then save it locally.
279 279
 	 *
280
-	 * @param  {Number} $media_id - media post ID
280
+	 * @param  integer $media_id - media post ID
281 281
 	 * @param  {String} $url - image URL to save locally
282 282
 	 * @return {Array|WP_Error} An array with information about the new file saved or a WP_Error is something went wrong.
283 283
 	 */
Please login to merge, or discard this patch.
modules/sharedaddy/sharing-service.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -505,6 +505,9 @@
 block discarded – undo
505 505
 	public $service = '';
506 506
 	public $total   = 0;
507 507
 
508
+	/**
509
+	 * @param integer $total
510
+	 */
508 511
 	public function __construct( $id, $total ) {
509 512
 		$services      = new Sharing_Service();
510 513
 		$this->id      = esc_html( $id );
Please login to merge, or discard this patch.