Completed
Push — branch-6.4-built ( 1f37b5...535e79 )
by
unknown
14:17 queued 05:13
created
class.jetpack.php 1 patch
Doc Comments   +42 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1112,7 +1112,7 @@  discard block
 block discarded – undo
1112 1112
 	}
1113 1113
 	/**
1114 1114
 	 * Does the network allow admins to add new users.
1115
-	 * @return boolian
1115
+	 * @return boolean
1116 1116
 	 */
1117 1117
 	static function network_add_new_users( $option = null ) {
1118 1118
 		return (bool) get_site_option( 'add_new_users' );
@@ -1217,7 +1217,7 @@  discard block
 block discarded – undo
1217 1217
 	 * database which could be set to anything as opposed to what this function returns.
1218 1218
 	 * @param  bool  $option
1219 1219
 	 *
1220
-	 * @return boolean
1220
+	 * @return string
1221 1221
 	 */
1222 1222
 	public function is_main_network_option( $option ) {
1223 1223
 		// return '1' or ''
@@ -1228,7 +1228,7 @@  discard block
 block discarded – undo
1228 1228
 	 * Return true if we are with multi-site or multi-network false if we are dealing with single site.
1229 1229
 	 *
1230 1230
 	 * @param  string  $option
1231
-	 * @return boolean
1231
+	 * @return string
1232 1232
 	 */
1233 1233
 	public function is_multisite( $option ) {
1234 1234
 		return (string) (bool) is_multisite();
@@ -1290,7 +1290,7 @@  discard block
 block discarded – undo
1290 1290
 
1291 1291
 	/**
1292 1292
 	 * Returns true if the site has file write access false otherwise.
1293
-	 * @return string ( '1' | '0' )
1293
+	 * @return integer ( '1' | '0' )
1294 1294
 	 **/
1295 1295
 	public static function file_system_write_access() {
1296 1296
 		if ( ! function_exists( 'get_filesystem_method' ) ) {
@@ -2119,6 +2119,7 @@  discard block
 block discarded – undo
2119 2119
 	 * @param int $user_id
2120 2120
 	 * @param string $token
2121 2121
 	 * return bool
2122
+	 * @param boolean $is_master_user
2122 2123
 	 */
2123 2124
 	public static function update_user_token( $user_id, $token, $is_master_user ) {
2124 2125
 		// not designed for concurrent updates
@@ -2521,6 +2522,7 @@  discard block
 block discarded – undo
2521 2522
 
2522 2523
 	/**
2523 2524
 	 * Like core's get_file_data implementation, but caches the result.
2525
+	 * @param string $file
2524 2526
 	 */
2525 2527
 	public static function get_file_data( $file, $headers ) {
2526 2528
 		//Get just the filename from $file (i.e. exclude full path) so that a consistent hash is generated
@@ -2557,7 +2559,7 @@  discard block
 block discarded – undo
2557 2559
 	 *
2558 2560
 	 * @param string $tag Tag as it appears in each module heading.
2559 2561
 	 *
2560
-	 * @return mixed
2562
+	 * @return string
2561 2563
 	 */
2562 2564
 	public static function translate_module_tag( $tag ) {
2563 2565
 		return jetpack_get_module_i18n_tag( $tag );
@@ -2672,8 +2674,8 @@  discard block
 block discarded – undo
2672 2674
 	 * Rewrites ABSPATH (eg `/home/jetpack/wordpress/`) to ABSPATH, and if WP_CONTENT_DIR
2673 2675
 	 * is located outside of ABSPATH, rewrites that to WP_CONTENT_DIR.
2674 2676
 	 *
2675
-	 * @param $string
2676
-	 * @return mixed
2677
+	 * @param string $string
2678
+	 * @return string|null
2677 2679
 	 */
2678 2680
 	public static function alias_directories( $string ) {
2679 2681
 		// ABSPATH has a trailing slash.
@@ -2953,6 +2955,9 @@  discard block
 block discarded – undo
2953 2955
 		return self::update_active_modules( $new );
2954 2956
 	}
2955 2957
 
2958
+	/**
2959
+	 * @param string $module
2960
+	 */
2956 2961
 	public static function enable_module_configurable( $module ) {
2957 2962
 		$module = Jetpack::get_module_slug( $module );
2958 2963
 		add_filter( 'jetpack_module_configurable_' . $module, '__return_true' );
@@ -2963,21 +2968,33 @@  discard block
 block discarded – undo
2963 2968
 		return Jetpack::admin_url( array( 'page' => 'jetpack', 'configure' => $module ) );
2964 2969
 	}
2965 2970
 
2971
+	/**
2972
+	 * @param string $module
2973
+	 */
2966 2974
 	public static function module_configuration_load( $module, $method ) {
2967 2975
 		$module = Jetpack::get_module_slug( $module );
2968 2976
 		add_action( 'jetpack_module_configuration_load_' . $module, $method );
2969 2977
 	}
2970 2978
 
2979
+	/**
2980
+	 * @param string $module
2981
+	 */
2971 2982
 	public static function module_configuration_head( $module, $method ) {
2972 2983
 		$module = Jetpack::get_module_slug( $module );
2973 2984
 		add_action( 'jetpack_module_configuration_head_' . $module, $method );
2974 2985
 	}
2975 2986
 
2987
+	/**
2988
+	 * @param string $module
2989
+	 */
2976 2990
 	public static function module_configuration_screen( $module, $method ) {
2977 2991
 		$module = Jetpack::get_module_slug( $module );
2978 2992
 		add_action( 'jetpack_module_configuration_screen_' . $module, $method );
2979 2993
 	}
2980 2994
 
2995
+	/**
2996
+	 * @param string $module
2997
+	 */
2981 2998
 	public static function module_configuration_activation_screen( $module, $method ) {
2982 2999
 		$module = Jetpack::get_module_slug( $module );
2983 3000
 		add_action( 'display_activate_module_setting_' . $module, $method );
@@ -2985,6 +3002,9 @@  discard block
 block discarded – undo
2985 3002
 
2986 3003
 /* Installation */
2987 3004
 
3005
+	/**
3006
+	 * @param string $message
3007
+	 */
2988 3008
 	public static function bail_on_activation( $message, $deactivate = true ) {
2989 3009
 ?>
2990 3010
 <!doctype html>
@@ -3741,7 +3761,7 @@  discard block
 block discarded – undo
3741 3761
 	 * Add help to the Jetpack page
3742 3762
 	 *
3743 3763
 	 * @since Jetpack (1.2.3)
3744
-	 * @return false if not the Jetpack page
3764
+	 * @return false|null if not the Jetpack page
3745 3765
 	 */
3746 3766
 	function admin_help() {
3747 3767
 		$current_screen = get_current_screen();
@@ -4843,6 +4863,7 @@  discard block
 block discarded – undo
4843 4863
 	/**
4844 4864
 	 * Returns the requested Jetpack API URL
4845 4865
 	 *
4866
+	 * @param string $relative_url
4846 4867
 	 * @return string
4847 4868
 	 */
4848 4869
 	public static function api_url( $relative_url ) {
@@ -5034,6 +5055,7 @@  discard block
 block discarded – undo
5034 5055
 	 * Note these tokens are unique per call, NOT static per site for connecting.
5035 5056
 	 *
5036 5057
 	 * @since 2.6
5058
+	 * @param string $action
5037 5059
 	 * @return array
5038 5060
 	 */
5039 5061
 	public static function generate_secrets( $action, $user_id = false, $exp = 600 ) {
@@ -5586,7 +5608,6 @@  discard block
 block discarded – undo
5586 5608
 	/**
5587 5609
 	 * Report authentication status to the WP REST API.
5588 5610
 	 *
5589
-	 * @param  WP_Error|mixed $result Error from another authentication handler, null if we should handle it, or another value if not
5590 5611
 	 * @return WP_Error|boolean|null {@see WP_JSON_Server::check_authentication}
5591 5612
 	 */
5592 5613
 	public function wp_rest_authentication_errors( $value ) {
@@ -5596,6 +5617,10 @@  discard block
 block discarded – undo
5596 5617
 		return $this->rest_authentication_status;
5597 5618
 	}
5598 5619
 
5620
+	/**
5621
+	 * @param integer $timestamp
5622
+	 * @param string $nonce
5623
+	 */
5599 5624
 	function add_nonce( $timestamp, $nonce ) {
5600 5625
 		global $wpdb;
5601 5626
 		static $nonces_used_this_request = array();
@@ -5741,6 +5766,7 @@  discard block
 block discarded – undo
5741 5766
 	 * @param string $key
5742 5767
 	 * @param string $value
5743 5768
 	 * @param bool $restate private
5769
+	 * @return string
5744 5770
 	 */
5745 5771
 	public static function state( $key = null, $value = null, $restate = false ) {
5746 5772
 		static $state = array();
@@ -5797,6 +5823,9 @@  discard block
 block discarded – undo
5797 5823
 		Jetpack::state( null, null, true );
5798 5824
 	}
5799 5825
 
5826
+	/**
5827
+	 * @param string $file
5828
+	 */
5800 5829
 	public static function check_privacy( $file ) {
5801 5830
 		static $is_site_publicly_accessible = null;
5802 5831
 
@@ -6414,9 +6443,7 @@  discard block
 block discarded – undo
6414 6443
 	 *
6415 6444
 	 * Attached to `style_loader_src` filter.
6416 6445
 	 *
6417
-	 * @param string $tag The tag that would link to the external asset.
6418 6446
 	 * @param string $handle The registered handle of the script in question.
6419
-	 * @param string $href The url of the asset in question.
6420 6447
 	 */
6421 6448
 	public static function set_suffix_on_min( $src, $handle ) {
6422 6449
 		if ( false === strpos( $src, '.min.css' ) ) {
@@ -6593,8 +6620,8 @@  discard block
 block discarded – undo
6593 6620
 	 *  - Absolute URLs             `http://domain.com/feh.png`
6594 6621
 	 *  - Domain root relative URLs `/feh.png`
6595 6622
 	 *
6596
-	 * @param $css string: The raw CSS -- should be read in directly from the file.
6597
-	 * @param $css_file_url : The URL that the file can be accessed at, for calculating paths from.
6623
+	 * @param string $css string: The raw CSS -- should be read in directly from the file.
6624
+	 * @param string $css_file_url : The URL that the file can be accessed at, for calculating paths from.
6598 6625
 	 *
6599 6626
 	 * @return mixed|string
6600 6627
 	 */
@@ -6823,7 +6850,7 @@  discard block
 block discarded – undo
6823 6850
 	 *
6824 6851
 	 * @param string $option_name
6825 6852
 	 *
6826
-	 * @return bool
6853
+	 * @return false|null
6827 6854
 	 */
6828 6855
 	public static function jumpstart_has_updated_module_option( $option_name = '' ) {
6829 6856
 		// Bail if Jump Start has already been dismissed
@@ -6864,7 +6891,7 @@  discard block
 block discarded – undo
6864 6891
 	/**
6865 6892
 	 * Stores and prints out domains to prefetch for page speed optimization.
6866 6893
 	 *
6867
-	 * @param mixed $new_urls
6894
+	 * @param string[] $new_urls
6868 6895
 	 */
6869 6896
 	public static function dns_prefetch( $new_urls = null ) {
6870 6897
 		static $prefetch_urls = array();
@@ -6910,7 +6937,6 @@  discard block
 block discarded – undo
6910 6937
 	}
6911 6938
 
6912 6939
 	/**
6913
-	 * @param mixed $result Value for the user's option
6914 6940
 	 * @return mixed
6915 6941
 	 */
6916 6942
 	function get_user_option_meta_box_order_dashboard( $sorted ) {
Please login to merge, or discard this patch.