Completed
Push — fix/visibility-condition-issue... ( eee6fd...a71c15 )
by
unknown
11:07
created
class.jetpack.php 1 patch
Doc Comments   +43 added lines, -13 removed lines patch added patch discarded remove patch
@@ -893,7 +893,7 @@  discard block
 block discarded – undo
893 893
 	}
894 894
 	/**
895 895
 	 * Does the network allow admins to add new users.
896
-	 * @return boolian
896
+	 * @return boolean
897 897
 	 */
898 898
 	static function network_add_new_users( $option = null ) {
899 899
 		return (bool) get_site_option( 'add_new_users' );
@@ -998,7 +998,7 @@  discard block
 block discarded – undo
998 998
 	 * database which could be set to anything as opposed to what this function returns.
999 999
 	 * @param  bool  $option
1000 1000
 	 *
1001
-	 * @return boolean
1001
+	 * @return string
1002 1002
 	 */
1003 1003
 	public function is_main_network_option( $option ) {
1004 1004
 		// return '1' or ''
@@ -1009,7 +1009,7 @@  discard block
 block discarded – undo
1009 1009
 	 * Return true if we are with multi-site or multi-network false if we are dealing with single site.
1010 1010
 	 *
1011 1011
 	 * @param  string  $option
1012
-	 * @return boolean
1012
+	 * @return string
1013 1013
 	 */
1014 1014
 	public function is_multisite( $option ) {
1015 1015
 		return (string) (bool) is_multisite();
@@ -1071,7 +1071,7 @@  discard block
 block discarded – undo
1071 1071
 
1072 1072
 	/**
1073 1073
 	 * Returns true if the site has file write access false otherwise.
1074
-	 * @return string ( '1' | '0' )
1074
+	 * @return integer ( '1' | '0' )
1075 1075
 	 **/
1076 1076
 	public static function file_system_write_access() {
1077 1077
 		if ( ! function_exists( 'get_filesystem_method' ) ) {
@@ -1280,6 +1280,7 @@  discard block
 block discarded – undo
1280 1280
 	 * @access public
1281 1281
 	 * @static
1282 1282
 	 *
1283
+	 * @param string $feature
1283 1284
 	 * @return bool True if plan supports feature, false if not
1284 1285
 	 */
1285 1286
 	public static function active_plan_supports( $feature ) {
@@ -1779,6 +1780,7 @@  discard block
 block discarded – undo
1779 1780
 	* Stores two secrets and a timestamp so WordPress.com can make a request back and verify an action
1780 1781
 	* Does some extra verification so urls (such as those to public-api, register, etc) can't just be crafted
1781 1782
 	* $name must be a registered option name.
1783
+	* @param string $name
1782 1784
 	*/
1783 1785
 	public static function create_nonce( $name ) {
1784 1786
 		$secret = wp_generate_password( 32, false ) . ':' . wp_generate_password( 32, false ) . ':' . ( time() + 600 );
@@ -1836,6 +1838,7 @@  discard block
 block discarded – undo
1836 1838
 	 * @param int $user_id
1837 1839
 	 * @param string $token
1838 1840
 	 * return bool
1841
+	 * @param boolean $is_master_user
1839 1842
 	 */
1840 1843
 	public static function update_user_token( $user_id, $token, $is_master_user ) {
1841 1844
 		// not designed for concurrent updates
@@ -2230,6 +2233,7 @@  discard block
 block discarded – undo
2230 2233
 
2231 2234
 	/**
2232 2235
 	 * Like core's get_file_data implementation, but caches the result.
2236
+	 * @param string $file
2233 2237
 	 */
2234 2238
 	public static function get_file_data( $file, $headers ) {
2235 2239
 		//Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated
@@ -2258,7 +2262,7 @@  discard block
 block discarded – undo
2258 2262
 	 *
2259 2263
 	 * @param string $tag Tag as it appears in each module heading.
2260 2264
 	 *
2261
-	 * @return mixed
2265
+	 * @return string
2262 2266
 	 */
2263 2267
 	public static function translate_module_tag( $tag ) {
2264 2268
 		return jetpack_get_module_i18n_tag( $tag );
@@ -2271,7 +2275,7 @@  discard block
 block discarded – undo
2271 2275
 	 *
2272 2276
 	 * @param array $modules
2273 2277
 	 *
2274
-	 * @return string|void
2278
+	 * @return string
2275 2279
 	 */
2276 2280
 	public static function get_translated_modules( $modules ) {
2277 2281
 		foreach ( $modules as $index => $module ) {
@@ -2600,6 +2604,9 @@  discard block
 block discarded – undo
2600 2604
 		return self::update_active_modules( $new );
2601 2605
 	}
2602 2606
 
2607
+	/**
2608
+	 * @param string $module
2609
+	 */
2603 2610
 	public static function enable_module_configurable( $module ) {
2604 2611
 		$module = Jetpack::get_module_slug( $module );
2605 2612
 		add_filter( 'jetpack_module_configurable_' . $module, '__return_true' );
@@ -2610,21 +2617,33 @@  discard block
 block discarded – undo
2610 2617
 		return Jetpack::admin_url( array( 'page' => 'jetpack', 'configure' => $module ) );
2611 2618
 	}
2612 2619
 
2620
+	/**
2621
+	 * @param string $module
2622
+	 */
2613 2623
 	public static function module_configuration_load( $module, $method ) {
2614 2624
 		$module = Jetpack::get_module_slug( $module );
2615 2625
 		add_action( 'jetpack_module_configuration_load_' . $module, $method );
2616 2626
 	}
2617 2627
 
2628
+	/**
2629
+	 * @param string $module
2630
+	 */
2618 2631
 	public static function module_configuration_head( $module, $method ) {
2619 2632
 		$module = Jetpack::get_module_slug( $module );
2620 2633
 		add_action( 'jetpack_module_configuration_head_' . $module, $method );
2621 2634
 	}
2622 2635
 
2636
+	/**
2637
+	 * @param string $module
2638
+	 */
2623 2639
 	public static function module_configuration_screen( $module, $method ) {
2624 2640
 		$module = Jetpack::get_module_slug( $module );
2625 2641
 		add_action( 'jetpack_module_configuration_screen_' . $module, $method );
2626 2642
 	}
2627 2643
 
2644
+	/**
2645
+	 * @param string $module
2646
+	 */
2628 2647
 	public static function module_configuration_activation_screen( $module, $method ) {
2629 2648
 		$module = Jetpack::get_module_slug( $module );
2630 2649
 		add_action( 'display_activate_module_setting_' . $module, $method );
@@ -2632,6 +2651,9 @@  discard block
 block discarded – undo
2632 2651
 
2633 2652
 /* Installation */
2634 2653
 
2654
+	/**
2655
+	 * @param string $message
2656
+	 */
2635 2657
 	public static function bail_on_activation( $message, $deactivate = true ) {
2636 2658
 ?>
2637 2659
 <!doctype html>
@@ -3280,7 +3302,7 @@  discard block
 block discarded – undo
3280 3302
 	 * Add help to the Jetpack page
3281 3303
 	 *
3282 3304
 	 * @since Jetpack (1.2.3)
3283
-	 * @return false if not the Jetpack page
3305
+	 * @return false|null if not the Jetpack page
3284 3306
 	 */
3285 3307
 	function admin_help() {
3286 3308
 		$current_screen = get_current_screen();
@@ -4278,6 +4300,7 @@  discard block
 block discarded – undo
4278 4300
 	/**
4279 4301
 	 * Returns the requested Jetpack API URL
4280 4302
 	 *
4303
+	 * @param string $relative_url
4281 4304
 	 * @return string
4282 4305
 	 */
4283 4306
 	public static function api_url( $relative_url ) {
@@ -4422,7 +4445,8 @@  discard block
 block discarded – undo
4422 4445
 	 * Note these tokens are unique per call, NOT static per site for connecting.
4423 4446
 	 *
4424 4447
 	 * @since 2.6
4425
-	 * @return array
4448
+	 * @param string $action
4449
+	 * @return string
4426 4450
 	 */
4427 4451
 	public function generate_secrets( $action, $exp = 600 ) {
4428 4452
 	    $secret = wp_generate_password( 32, false ) // secret_1
@@ -4849,7 +4873,6 @@  discard block
 block discarded – undo
4849 4873
 	/**
4850 4874
 	 * Report authentication status to the WP REST API.
4851 4875
 	 *
4852
-	 * @param  WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not
4853 4876
 	 * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication}
4854 4877
 	 */
4855 4878
 	public function wp_rest_authentication_errors( $value ) {
@@ -4859,6 +4882,10 @@  discard block
 block discarded – undo
4859 4882
 		return $this->rest_authentication_status;
4860 4883
 	}
4861 4884
 
4885
+	/**
4886
+	 * @param integer $timestamp
4887
+	 * @param string $nonce
4888
+	 */
4862 4889
 	function add_nonce( $timestamp, $nonce ) {
4863 4890
 		global $wpdb;
4864 4891
 		static $nonces_used_this_request = array();
@@ -5004,6 +5031,7 @@  discard block
 block discarded – undo
5004 5031
 	 * @param string $key
5005 5032
 	 * @param string $value
5006 5033
 	 * @param bool $restate private
5034
+	 * @return string
5007 5035
 	 */
5008 5036
 	public static function state( $key = null, $value = null, $restate = false ) {
5009 5037
 		static $state = array();
@@ -5060,6 +5088,9 @@  discard block
 block discarded – undo
5060 5088
 		Jetpack::state( null, null, true );
5061 5089
 	}
5062 5090
 
5091
+	/**
5092
+	 * @param string $file
5093
+	 */
5063 5094
 	public static function check_privacy( $file ) {
5064 5095
 		static $is_site_publicly_accessible = null;
5065 5096
 
@@ -5809,8 +5840,8 @@  discard block
 block discarded – undo
5809 5840
 	 *  - Absolute URLs             `http://domain.com/feh.png`
5810 5841
 	 *  - Domain root relative URLs `/feh.png`
5811 5842
 	 *
5812
-	 * @param $css string: The raw CSS -- should be read in directly from the file.
5813
-	 * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from.
5843
+	 * @param string $css string: The raw CSS -- should be read in directly from the file.
5844
+	 * @param string $css_file_url : The URL that the file can be accessed at, for calculating paths from.
5814 5845
 	 *
5815 5846
 	 * @return mixed|string
5816 5847
 	 */
@@ -6101,7 +6132,7 @@  discard block
 block discarded – undo
6101 6132
 	 *
6102 6133
 	 * @param string $option_name
6103 6134
 	 *
6104
-	 * @return bool
6135
+	 * @return false|null
6105 6136
 	 */
6106 6137
 	public static function jumpstart_has_updated_module_option( $option_name = '' ) {
6107 6138
 		// Bail if Jump Start has already been dismissed
@@ -6192,7 +6223,6 @@  discard block
 block discarded – undo
6192 6223
 	}
6193 6224
 
6194 6225
 	/**
6195
-	 * @param mixed $result Value for the user's option
6196 6226
 	 * @return mixed
6197 6227
 	 */
6198 6228
 	function get_user_option_meta_box_order_dashboard( $sorted ) {
Please login to merge, or discard this patch.
_inc/lib/class.core-rest-api-endpoints.php 1 patch
Doc Comments   +7 added lines, -2 removed lines patch added patch discarded remove patch
@@ -283,6 +283,11 @@  discard block
 block discarded – undo
283 283
 		) );
284 284
 	}
285 285
 
286
+	/**
287
+	 * @param string $path
288
+	 * @param string $classname
289
+	 * @param Jetpack_IXR_Client $constructor_arguments
290
+	 */
286 291
 	public static function route( $path, $classname, $method,
287 292
 		$constructor_arguments = NULL,
288 293
 		$endpoint_arguments = NULL
@@ -1980,7 +1985,7 @@  discard block
 block discarded – undo
1980 1985
 	 *
1981 1986
 	 * @param string $route Regular expression for the endpoint with the module slug to return.
1982 1987
 	 *
1983
-	 * @return array
1988
+	 * @return string
1984 1989
 	 */
1985 1990
 	public static function get_module_requested( $route = '/module/(?P<slug>[a-z\-]+)' ) {
1986 1991
 
@@ -2005,7 +2010,7 @@  discard block
 block discarded – undo
2005 2010
 	 * @param string      $modules Can be a single module or a list of modules.
2006 2011
 	 * @param null|string $slug    Slug of the module in the first parameter.
2007 2012
 	 *
2008
-	 * @return array
2013
+	 * @return string
2009 2014
 	 */
2010 2015
 	public static function prepare_modules_for_response( $modules = '', $slug = null ) {
2011 2016
 		if ( get_option( 'permalink_structure' ) ) {
Please login to merge, or discard this patch.
class.jetpack-autoupdate.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
 	/**
164 164
 	 * Iterates through expected items ( plugins or themes ) and compares them to actual results.
165 165
 	 *
166
-	 * @param $items 'plugin' or 'theme'
166
+	 * @param string $items 'plugin' or 'theme'
167 167
 	 */
168 168
 	private function log_items( $items ) {
169 169
 		if ( ! isset( $this->expected[ $items ] ) ) {
Please login to merge, or discard this patch.
json-endpoints/class.wpcom-json-api-site-user-endpoint.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -64,6 +64,7 @@
 block discarded – undo
64 64
 	/**
65 65
 	 * Updates user data
66 66
 	 *
67
+	 * @param integer $user_id
67 68
 	 * @return (array)
68 69
 	 */
69 70
 	public function update_user( $user_id, $blog_id ) {
Please login to merge, or discard this patch.
json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -227,6 +227,9 @@
 block discarded – undo
227 227
 		);
228 228
 	}
229 229
 
230
+	/**
231
+	 * @param Jetpack_Sync_Queue $queue
232
+	 */
230 233
 	protected function get_buffer( $queue, $number_of_items ) {
231 234
 		$start = time();
232 235
 		$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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1387,7 +1387,6 @@  discard block
 block discarded – undo
1387 1387
 	 *
1388 1388
 	 * @see ::style()
1389 1389
 	 * @internal
1390
-	 * @param bool $style
1391 1390
 	 */
1392 1391
 	static function _style_on() {
1393 1392
 		return self::style( true );
@@ -1526,6 +1525,7 @@  discard block
 block discarded – undo
1526 1525
 	 *
1527 1526
 	 * @param int                         $feedback_id
1528 1527
 	 * @param object Grunion_Contact_Form $form
1528
+	 * @param Grunion_Contact_Form $form
1529 1529
 	 *
1530 1530
 	 * @return string $message
1531 1531
 	 */
@@ -1630,7 +1630,7 @@  discard block
 block discarded – undo
1630 1630
 	 *
1631 1631
 	 * @param array       $attributes Key => Value pairs as parsed by shortcode_parse_atts()
1632 1632
 	 * @param string|null $content The shortcode's inner content: [contact-field]$content[/contact-field]
1633
-	 * @return HTML for the contact form field
1633
+	 * @return string for the contact form field
1634 1634
 	 */
1635 1635
 	static function parse_contact_field( $attributes, $content ) {
1636 1636
 		// Don't try to parse contact form fields if not inside a contact form
Please login to merge, or discard this patch.
modules/custom-post-types/portfolios.php 1 patch
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
 	 * Our [portfolio] shortcode.
489 489
 	 * Prints Portfolio data styled to look good on *any* theme.
490 490
 	 *
491
-	 * @return portfolio_shortcode_html
491
+	 * @return string
492 492
 	 */
493 493
 	static function portfolio_shortcode( $atts ) {
494 494
 		// Default attributes
@@ -621,7 +621,7 @@  discard block
 block discarded – undo
621 621
 	 * The Portfolio shortcode loop.
622 622
 	 *
623 623
 	 * @todo add theme color styles
624
-	 * @return html
624
+	 * @return string
625 625
 	 */
626 626
 	static function portfolio_shortcode_html( $atts ) {
627 627
 
@@ -713,6 +713,7 @@  discard block
 block discarded – undo
713 713
 	/**
714 714
 	 * Individual project class
715 715
 	 *
716
+	 * @param integer $portfolio_index_number
716 717
 	 * @return string
717 718
 	 */
718 719
 	static function get_project_class( $portfolio_index_number, $columns ) {
@@ -820,7 +821,7 @@  discard block
 block discarded – undo
820 821
 	/**
821 822
 	 * Displays the author of the current portfolio project.
822 823
 	 *
823
-	 * @return html
824
+	 * @return string
824 825
 	 */
825 826
 	static function get_project_author() {
826 827
 		$html = '<div class="project-author">';
@@ -837,7 +838,7 @@  discard block
 block discarded – undo
837 838
 	/**
838 839
 	 * Display the featured image if it's available
839 840
 	 *
840
-	 * @return html
841
+	 * @return string|null
841 842
 	 */
842 843
 	static function get_portfolio_thumbnail_link( $post_id ) {
843 844
 		if ( has_post_thumbnail( $post_id ) ) {
Please login to merge, or discard this patch.
modules/custom-post-types/testimonial.php 1 patch
Doc Comments   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
 	 * Our [testimonial] shortcode.
526 526
 	 * Prints Testimonial data styled to look good on *any* theme.
527 527
 	 *
528
-	 * @return jetpack_testimonial_shortcode_html
528
+	 * @return string
529 529
 	 */
530 530
 	static function jetpack_testimonial_shortcode( $atts ) {
531 531
 		// Default attributes
@@ -588,7 +588,7 @@  discard block
 block discarded – undo
588 588
 	/**
589 589
 	 * The Testimonial shortcode loop.
590 590
 	 *
591
-	 * @return html
591
+	 * @return string
592 592
 	 */
593 593
 	static function jetpack_testimonial_shortcode_html( $atts ) {
594 594
 		// Default query arguments
@@ -662,6 +662,7 @@  discard block
 block discarded – undo
662 662
 	/**
663 663
 	 * Individual testimonial class
664 664
 	 *
665
+	 * @param integer $testimonial_index_number
665 666
 	 * @return string
666 667
 	 */
667 668
 	static function get_testimonial_class( $testimonial_index_number, $columns, $image ) {
@@ -708,7 +709,7 @@  discard block
 block discarded – undo
708 709
 	/**
709 710
 	 * Display the featured image if it's available
710 711
 	 *
711
-	 * @return html
712
+	 * @return string|null
712 713
 	 */
713 714
 	static function get_testimonial_thumbnail_link( $post_id ) {
714 715
 		if ( has_post_thumbnail( $post_id ) ) {
Please login to merge, or discard this patch.
modules/protect/transient-cleanup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 	 *
11 11
 	 * @access public
12 12
 	 * @param string $older_than (default: '1 hour') Older Than.
13
-	 * @return void
13
+	 * @return false|null
14 14
 	 */
15 15
 	function jp_purge_transients( $older_than = '1 hour' ) {
16 16
 		global $wpdb;
Please login to merge, or discard this patch.