Completed
Push — update/remove-disconnect-link ( 4b6a2c )
by
unknown
73:18 queued 63:47
created
sync/class.jetpack-sync-actions.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -298,6 +298,9 @@  discard block
 block discarded – undo
298 298
 		return $sync_modules;
299 299
 	}
300 300
 
301
+	/**
302
+	 * @return string
303
+	 */
301 304
 	static function sanitize_filtered_sync_cron_schedule( $schedule ) {
302 305
 		$schedule = sanitize_key( $schedule );
303 306
 		$schedules = wp_get_schedules();
@@ -333,6 +336,9 @@  discard block
 block discarded – undo
333 336
 		) );
334 337
 	}
335 338
 
339
+	/**
340
+	 * @param string $hook
341
+	 */
336 342
 	static function maybe_schedule_sync_cron( $schedule, $hook ) {
337 343
 		if ( ! $hook ) {
338 344
 			return;
Please login to merge, or discard this patch.
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.
modules/publicize/publicize-jetpack.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -353,6 +353,9 @@  discard block
 block discarded – undo
353 353
 		), menu_page_url( 'sharing', false ) );
354 354
 	}
355 355
 
356
+	/**
357
+	 * @param string $filter
358
+	 */
356 359
 	function get_services( $filter ) {
357 360
 		if ( ! in_array( $filter, array( 'all', 'connected' ) ) ) {
358 361
 			$filter = 'all';
@@ -787,6 +790,9 @@  discard block
 block discarded – undo
787 790
 		$this->options_save_other( 'google_plus' );
788 791
 	}
789 792
 
793
+	/**
794
+	 * @param string $service_name
795
+	 */
790 796
 	function options_save_other( $service_name ) {
791 797
 		// Nonce check
792 798
 		check_admin_referer( 'save_' . $service_name . '_token_' . $_REQUEST['connection'] );
Please login to merge, or discard this patch.
modules/widgets/facebook-likebox.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -267,6 +267,9 @@
 block discarded – undo
267 267
 		return ( false !== strpos( $url, 'facebook.com' ) ) ? true : false;
268 268
 	}
269 269
 
270
+	/**
271
+	 * @param integer $value
272
+	 */
270 273
 	function normalize_int_value( $value, $default = 0, $max = 0, $min = 0 ) {
271 274
 		$value = (int) $value;
272 275
 
Please login to merge, or discard this patch.
sync/class.jetpack-sync-settings.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -135,6 +135,9 @@  discard block
 block discarded – undo
135 135
 		self::set_is_sending( null );
136 136
 	}
137 137
 
138
+	/**
139
+	 * @param boolean|null $is_importing
140
+	 */
138 141
 	static function set_importing( $is_importing ) {
139 142
 		// set to NULL to revert to WP_IMPORTING, the standard behaviour
140 143
 		self::$is_importing = $is_importing;
@@ -165,6 +168,9 @@  discard block
 block discarded – undo
165 168
 		return (bool) self::$is_syncing || ( defined( 'REST_API_REQUEST' ) && REST_API_REQUEST );
166 169
 	}
167 170
 
171
+	/**
172
+	 * @param boolean|null $is_syncing
173
+	 */
168 174
 	static function set_is_syncing( $is_syncing ) {
169 175
 		self::$is_syncing = $is_syncing;
170 176
 	}
@@ -173,6 +179,9 @@  discard block
 block discarded – undo
173 179
 		return (bool) self::$is_sending;
174 180
 	}
175 181
 
182
+	/**
183
+	 * @param boolean|null $is_sending
184
+	 */
176 185
 	static function set_is_sending( $is_sending ) {
177 186
 		self::$is_sending = $is_sending;
178 187
 	}
Please login to merge, or discard this patch.
modules/post-by-email.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
 	/**
176 176
 	 * Back end function to abstract the xmlrpc function calls to wpcom.
177 177
 	 *
178
-	 * @param $endpoint
178
+	 * @param string $endpoint
179 179
 	 * @param $error_message
180 180
 	 */
181 181
 	function __process_ajax_proxy_request( $endpoint, $error_message ) {
Please login to merge, or discard this patch.
functions.photon.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,6 +7,7 @@  discard block
 block discarded – undo
7 7
  *
8 8
  * @param string $image_url URL to the publicly accessible image you want to manipulate
9 9
  * @param array|string $args An array of arguments, i.e. array( 'w' => '300', 'resize' => array( 123, 456 ) ), or in string form (w=123&h=456)
10
+ * @param string $scheme
10 11
  * @return string The raw final URL. You should run this through esc_url() before displaying it.
11 12
  */
12 13
 function jetpack_photon_url( $image_url, $args = array(), $scheme = null ) {
@@ -268,7 +269,7 @@  discard block
 block discarded – undo
268 269
  *
269 270
  * @param string $url The URL to parse
270 271
  * @param integer $component Retrieve specific URL component
271
- * @return mixed Result of parse_url
272
+ * @return string|false Result of parse_url
272 273
  */
273 274
 function jetpack_photon_parse_url( $url, $component = -1 ) {
274 275
 	if ( 0 === strpos( $url, '//' ) ) {
Please login to merge, or discard this patch.
modules/google-analytics/wp-google-analytics.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -80,6 +80,8 @@
 block discarded – undo
80 80
 
81 81
 	/**
82 82
 	 * Maybe output or return, depending on the context
83
+	 * @param string $val
84
+	 * @param boolean $maybe
83 85
 	 */
84 86
 	private function _output_or_return( $val, $maybe ) {
85 87
 		if ( $maybe ) {
Please login to merge, or discard this patch.