Completed
Push — add/notification-on-plan-upgra... ( c85890...4676f5 )
by
unknown
07:25
created
json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -228,6 +228,9 @@
 block discarded – undo
228 228
 		);
229 229
 	}
230 230
 
231
+	/**
232
+	 * @param Queue $queue
233
+	 */
231 234
 	protected function get_buffer( $queue, $number_of_items ) {
232 235
 		$start = time();
233 236
 		$max_duration = 5; // this will try to get the buffer
Please login to merge, or discard this patch.
modules/contact-form/grunion-contact-form.php 1 patch
Doc Comments   +44 added lines, -2 removed lines patch added patch discarded remove patch
@@ -302,6 +302,9 @@  discard block
 block discarded – undo
302 302
 		return Grunion_Contact_Form::parse( $atts, do_blocks( $content ) );
303 303
 	}
304 304
 
305
+	/**
306
+	 * @param string $type
307
+	 */
305 308
 	public static function block_attributes_to_shortcode_attributes( $atts, $type ) {
306 309
 		$atts['type'] = $type;
307 310
 		if ( isset( $atts['className'] ) ) {
@@ -1925,7 +1928,6 @@  discard block
 block discarded – undo
1925 1928
 	 *
1926 1929
 	 * @see ::style()
1927 1930
 	 * @internal
1928
-	 * @param bool $style
1929 1931
 	 */
1930 1932
 	static function _style_on() {
1931 1933
 		return self::style( true );
@@ -2096,6 +2098,7 @@  discard block
 block discarded – undo
2096 2098
 	 *
2097 2099
 	 * @param int                         $feedback_id
2098 2100
 	 * @param object Grunion_Contact_Form $form
2101
+	 * @param Grunion_Contact_Form $form
2099 2102
 	 *
2100 2103
 	 * @return string $message
2101 2104
 	 */
@@ -2220,7 +2223,7 @@  discard block
 block discarded – undo
2220 2223
 	 *
2221 2224
 	 * @param array       $attributes Key => Value pairs as parsed by shortcode_parse_atts()
2222 2225
 	 * @param string|null $content The shortcode's inner content: [contact-field]$content[/contact-field]
2223
-	 * @return HTML for the contact form field
2226
+	 * @return string for the contact form field
2224 2227
 	 */
2225 2228
 	static function parse_contact_field( $attributes, $content ) {
2226 2229
 		// Don't try to parse contact form fields if not inside a contact form
@@ -3260,6 +3263,9 @@  discard block
 block discarded – undo
3260 3263
 
3261 3264
 	}
3262 3265
 
3266
+	/**
3267
+	 * @param string $type
3268
+	 */
3263 3269
 	function render_input_field( $type, $id, $value, $class, $placeholder, $required ) {
3264 3270
 		return "<input
3265 3271
 					type='". esc_attr( $type ) ."'
@@ -3271,24 +3277,40 @@  discard block
 block discarded – undo
3271 3277
 				/>\n";
3272 3278
 	}
3273 3279
 
3280
+	/**
3281
+	 * @param string $class
3282
+	 * @param string $placeholder
3283
+	 */
3274 3284
 	function render_email_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder ) {
3275 3285
 		$field = $this->render_label( 'email', $id, $label, $required, $required_field_text );
3276 3286
 		$field .= $this->render_input_field( 'email', $id, $value, $class, $placeholder, $required );
3277 3287
 		return $field;
3278 3288
 	}
3279 3289
 
3290
+	/**
3291
+	 * @param string $class
3292
+	 * @param string $placeholder
3293
+	 */
3280 3294
 	function render_telephone_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder ) {
3281 3295
 		$field = $this->render_label( 'telephone', $id, $label, $required, $required_field_text );
3282 3296
 		$field .= $this->render_input_field( 'tel', $id, $value, $class, $placeholder, $required );
3283 3297
 		return $field;
3284 3298
 	}
3285 3299
 
3300
+	/**
3301
+	 * @param string $class
3302
+	 * @param string $placeholder
3303
+	 */
3286 3304
 	function render_url_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder ) {
3287 3305
 		$field = $this->render_label( 'url', $id, $label, $required, $required_field_text );
3288 3306
 		$field .= $this->render_input_field( 'url', $id, $value, $class, $placeholder, $required );
3289 3307
 		return $field;
3290 3308
 	}
3291 3309
 
3310
+	/**
3311
+	 * @param string $class
3312
+	 * @param string $placeholder
3313
+	 */
3292 3314
 	function render_textarea_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder ) {
3293 3315
 		$field = $this->render_label( 'textarea', 'contact-form-comment-' . $id, $label, $required, $required_field_text );
3294 3316
 		$field .= "<textarea
@@ -3303,6 +3325,9 @@  discard block
 block discarded – undo
3303 3325
 		return $field;
3304 3326
 	}
3305 3327
 
3328
+	/**
3329
+	 * @param string $class
3330
+	 */
3306 3331
 	function render_radio_field( $id, $label, $value, $class, $required, $required_field_text ) {
3307 3332
 		$field = $this->render_label( '', $id, $label, $required, $required_field_text );
3308 3333
 		foreach ( (array) $this->get_attribute( 'options' ) as $optionIndex => $option ) {
@@ -3324,6 +3349,9 @@  discard block
 block discarded – undo
3324 3349
 		return $field;
3325 3350
 	}
3326 3351
 
3352
+	/**
3353
+	 * @param string $class
3354
+	 */
3327 3355
 	function render_checkbox_field( $id, $label, $value, $class, $required, $required_field_text ) {
3328 3356
 		$field = "<label class='grunion-field-label checkbox" . ( $this->is_error() ? ' form-error' : '' ) . "'>";
3329 3357
 			$field .= "\t\t<input type='checkbox' name='" . esc_attr( $id ) . "' value='" . esc_attr__( 'Yes', 'jetpack' ) . "' " . $class . checked( (bool) $value, true, false ) . ' ' . ( $required ? "required aria-required='true'" : '' ) . "/> \n";
@@ -3333,6 +3361,9 @@  discard block
 block discarded – undo
3333 3361
 		return $field;
3334 3362
 	}
3335 3363
 
3364
+	/**
3365
+	 * @param string $class
3366
+	 */
3336 3367
 	function render_checkbox_multiple_field( $id, $label, $value, $class, $required, $required_field_text  ) {
3337 3368
 		$field = $this->render_label( '', $id, $label, $required, $required_field_text );
3338 3369
 		foreach ( (array) $this->get_attribute( 'options' ) as $optionIndex => $option ) {
@@ -3348,6 +3379,9 @@  discard block
 block discarded – undo
3348 3379
 		return $field;
3349 3380
 	}
3350 3381
 
3382
+	/**
3383
+	 * @param string $class
3384
+	 */
3351 3385
 	function render_select_field( $id, $label, $value, $class, $required, $required_field_text ) {
3352 3386
 		$field = $this->render_label( 'select', $id, $label, $required, $required_field_text );
3353 3387
 		$field  .= "\t<select name='" . esc_attr( $id ) . "' id='" . esc_attr( $id ) . "' " . $class . ( $required ? "required aria-required='true'" : '' ) . ">\n";
@@ -3365,6 +3399,10 @@  discard block
 block discarded – undo
3365 3399
 		return $field;
3366 3400
 	}
3367 3401
 
3402
+	/**
3403
+	 * @param string $class
3404
+	 * @param string $placeholder
3405
+	 */
3368 3406
 	function render_date_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder ) {
3369 3407
 
3370 3408
 		$field = $this->render_label( 'date', $id, $label, $required, $required_field_text );
@@ -3395,6 +3433,10 @@  discard block
 block discarded – undo
3395 3433
 		return $field;
3396 3434
 	}
3397 3435
 
3436
+	/**
3437
+	 * @param string $class
3438
+	 * @param string $placeholder
3439
+	 */
3398 3440
 	function render_default_field( $id, $label, $value, $class, $required, $required_field_text, $placeholder, $type ) {
3399 3441
 		$field = $this->render_label( $type, $id, $label, $required, $required_field_text );
3400 3442
 		$field .= $this->render_input_field( 'text', $id, $value, $class, $placeholder, $required );
Please login to merge, or discard this patch.
class.jetpack.php 1 patch
Doc Comments   +30 added lines, -16 removed lines patch added patch discarded remove patch
@@ -750,7 +750,7 @@  discard block
 block discarded – undo
750 750
 	 * This is ported over from the manage module, which has been deprecated and baked in here.
751 751
 	 *
752 752
 	 * @param $domains
753
-	 * @return array
753
+	 * @return string[]
754 754
 	 */
755 755
 	function allow_wpcom_domain( $domains ) {
756 756
 		if ( empty( $domains ) ) {
@@ -1208,7 +1208,7 @@  discard block
 block discarded – undo
1208 1208
 	}
1209 1209
 	/**
1210 1210
 	 * Does the network allow admins to add new users.
1211
-	 * @return boolian
1211
+	 * @return boolean
1212 1212
 	 */
1213 1213
 	static function network_add_new_users( $option = null ) {
1214 1214
 		return (bool) get_site_option( 'add_new_users' );
@@ -1313,7 +1313,7 @@  discard block
 block discarded – undo
1313 1313
 	 * database which could be set to anything as opposed to what this function returns.
1314 1314
 	 * @param  bool  $option
1315 1315
 	 *
1316
-	 * @return boolean
1316
+	 * @return string
1317 1317
 	 */
1318 1318
 	public function is_main_network_option( $option ) {
1319 1319
 		// return '1' or ''
@@ -1324,7 +1324,7 @@  discard block
 block discarded – undo
1324 1324
 	 * Return true if we are with multi-site or multi-network false if we are dealing with single site.
1325 1325
 	 *
1326 1326
 	 * @param  string  $option
1327
-	 * @return boolean
1327
+	 * @return string
1328 1328
 	 */
1329 1329
 	public function is_multisite( $option ) {
1330 1330
 		return (string) (bool) is_multisite();
@@ -1386,7 +1386,7 @@  discard block
 block discarded – undo
1386 1386
 
1387 1387
 	/**
1388 1388
 	 * Returns true if the site has file write access false otherwise.
1389
-	 * @return string ( '1' | '0' )
1389
+	 * @return integer ( '1' | '0' )
1390 1390
 	 **/
1391 1391
 	public static function file_system_write_access() {
1392 1392
 		if ( ! function_exists( 'get_filesystem_method' ) ) {
@@ -2114,6 +2114,7 @@  discard block
 block discarded – undo
2114 2114
 	 * @param int $user_id
2115 2115
 	 * @param string $token
2116 2116
 	 * return bool
2117
+	 * @param boolean $is_master_user
2117 2118
 	 */
2118 2119
 	public static function update_user_token( $user_id, $token, $is_master_user ) {
2119 2120
 		// not designed for concurrent updates
@@ -2558,7 +2559,7 @@  discard block
 block discarded – undo
2558 2559
 	 *
2559 2560
 	 * @param string $tag Tag as it appears in each module heading.
2560 2561
 	 *
2561
-	 * @return mixed
2562
+	 * @return string
2562 2563
 	 */
2563 2564
 	public static function translate_module_tag( $tag ) {
2564 2565
 		return jetpack_get_module_i18n_tag( $tag );
@@ -2730,8 +2731,8 @@  discard block
 block discarded – undo
2730 2731
 	 * Rewrites ABSPATH (eg `/home/jetpack/wordpress/`) to ABSPATH, and if WP_CONTENT_DIR
2731 2732
 	 * is located outside of ABSPATH, rewrites that to WP_CONTENT_DIR.
2732 2733
 	 *
2733
-	 * @param $string
2734
-	 * @return mixed
2734
+	 * @param string $string
2735
+	 * @return string|null
2735 2736
 	 */
2736 2737
 	public static function alias_directories( $string ) {
2737 2738
 		// ABSPATH has a trailing slash.
@@ -2991,6 +2992,9 @@  discard block
 block discarded – undo
2991 2992
 		return self::update_active_modules( $new );
2992 2993
 	}
2993 2994
 
2995
+	/**
2996
+	 * @param string $module
2997
+	 */
2994 2998
 	public static function enable_module_configurable( $module ) {
2995 2999
 		$module = Jetpack::get_module_slug( $module );
2996 3000
 		add_filter( 'jetpack_module_configurable_' . $module, '__return_true' );
@@ -3019,6 +3023,9 @@  discard block
 block discarded – undo
3019 3023
 	}
3020 3024
 
3021 3025
 /* Installation */
3026
+	/**
3027
+	 * @param string $message
3028
+	 */
3022 3029
 	public static function bail_on_activation( $message, $deactivate = true ) {
3023 3030
 ?>
3024 3031
 <!doctype html>
@@ -3755,7 +3762,7 @@  discard block
 block discarded – undo
3755 3762
 	 * Add help to the Jetpack page
3756 3763
 	 *
3757 3764
 	 * @since Jetpack (1.2.3)
3758
-	 * @return false if not the Jetpack page
3765
+	 * @return false|null if not the Jetpack page
3759 3766
 	 */
3760 3767
 	function admin_help() {
3761 3768
 		$current_screen = get_current_screen();
@@ -4618,6 +4625,9 @@  discard block
 block discarded – undo
4618 4625
 		return $url;
4619 4626
 	}
4620 4627
 
4628
+	/**
4629
+	 * @return string
4630
+	 */
4621 4631
 	public static function nonce_url_no_esc( $actionurl, $action = -1, $name = '_wpnonce' ) {
4622 4632
 		$actionurl = str_replace( '&amp;', '&', $actionurl );
4623 4633
 		return add_query_arg( $name, wp_create_nonce( $action ), $actionurl );
@@ -4921,6 +4931,7 @@  discard block
 block discarded – undo
4921 4931
 	 * Note these tokens are unique per call, NOT static per site for connecting.
4922 4932
 	 *
4923 4933
 	 * @since 2.6
4934
+	 * @param string $action
4924 4935
 	 * @return array
4925 4936
 	 */
4926 4937
 	public static function generate_secrets( $action, $user_id = false, $exp = 600 ) {
@@ -5210,7 +5221,6 @@  discard block
 block discarded – undo
5210 5221
 	/**
5211 5222
 	 * Report authentication status to the WP REST API.
5212 5223
 	 *
5213
-	 * @param  WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not
5214 5224
 	 * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication}
5215 5225
 	 */
5216 5226
 	public function wp_rest_authentication_errors( $value ) {
@@ -5312,6 +5322,7 @@  discard block
 block discarded – undo
5312 5322
 	 * @param string $key
5313 5323
 	 * @param string $value
5314 5324
 	 * @param bool $restate private
5325
+	 * @return string
5315 5326
 	 */
5316 5327
 	public static function state( $key = null, $value = null, $restate = false ) {
5317 5328
 		static $state = array();
@@ -5368,6 +5379,9 @@  discard block
 block discarded – undo
5368 5379
 		Jetpack::state( null, null, true );
5369 5380
 	}
5370 5381
 
5382
+	/**
5383
+	 * @param string $file
5384
+	 */
5371 5385
 	public static function check_privacy( $file ) {
5372 5386
 		static $is_site_publicly_accessible = null;
5373 5387
 
@@ -5450,6 +5464,9 @@  discard block
 block discarded – undo
5450 5464
 		}
5451 5465
 	}
5452 5466
 
5467
+	/**
5468
+	 * @param string $url
5469
+	 */
5453 5470
 	public static function staticize_subdomain( $url ) {
5454 5471
 
5455 5472
 		// Extract hostname from URL
@@ -6005,9 +6022,7 @@  discard block
 block discarded – undo
6005 6022
 	 *
6006 6023
 	 * Attached to `style_loader_src` filter.
6007 6024
 	 *
6008
-	 * @param string $tag The tag that would link to the external asset.
6009 6025
 	 * @param string $handle The registered handle of the script in question.
6010
-	 * @param string $href The url of the asset in question.
6011 6026
 	 */
6012 6027
 	public static function set_suffix_on_min( $src, $handle ) {
6013 6028
 		if ( false === strpos( $src, '.min.css' ) ) {
@@ -6194,8 +6209,8 @@  discard block
 block discarded – undo
6194 6209
 	 *  - Absolute URLs             `http://domain.com/feh.png`
6195 6210
 	 *  - Domain root relative URLs `/feh.png`
6196 6211
 	 *
6197
-	 * @param $css string: The raw CSS -- should be read in directly from the file.
6198
-	 * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from.
6212
+	 * @param string $css string: The raw CSS -- should be read in directly from the file.
6213
+	 * @param string $css_file_url : The URL that the file can be accessed at, for calculating paths from.
6199 6214
 	 *
6200 6215
 	 * @return mixed|string
6201 6216
 	 */
@@ -6438,7 +6453,7 @@  discard block
 block discarded – undo
6438 6453
 	/**
6439 6454
 	 * Stores and prints out domains to prefetch for page speed optimization.
6440 6455
 	 *
6441
-	 * @param mixed $new_urls
6456
+	 * @param string[] $new_urls
6442 6457
 	 */
6443 6458
 	public static function dns_prefetch( $new_urls = null ) {
6444 6459
 		static $prefetch_urls = array();
@@ -6494,7 +6509,6 @@  discard block
 block discarded – undo
6494 6509
 	}
6495 6510
 
6496 6511
 	/**
6497
-	 * @param mixed $result Value for the user's option
6498 6512
 	 * @return mixed
6499 6513
 	 */
6500 6514
 	function get_user_option_meta_box_order_dashboard( $sorted ) {
Please login to merge, or discard this patch.