Completed
Push — update/search-remove-front-bul... ( 181d2f )
by
unknown
12:11
created
modules/google-analytics/classes/wp-google-analytics-options.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -15,6 +15,10 @@
 block discarded – undo
15 15
 }
16 16
 
17 17
 class Jetpack_Google_Analytics_Options {
18
+
19
+	/**
20
+	 * @param string $option_name
21
+	 */
18 22
 	public static function get_option( $option_name, $default = false ) {
19 23
 		$o = get_option( 'jetpack_wga' );
20 24
 		return isset( $o[ $option_name ] ) ? $o[ $option_name ] : $default;
Please login to merge, or discard this patch.
modules/protect/blocked-login-page.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -326,6 +326,9 @@
 block discarded – undo
326 326
 		return $contents;
327 327
 	}
328 328
 
329
+	/**
330
+	 * @param string $message
331
+	 */
329 332
 	function display_page( $title, $message, $back_button = false, $recovery_form = false ) {
330 333
 
331 334
 		if ( ! headers_sent() ) {
Please login to merge, or discard this patch.
modules/widgets/goodreads.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -87,6 +87,9 @@
 block discarded – undo
87 87
 		echo $args['after_widget'];
88 88
 	}
89 89
 
90
+	/**
91
+	 * @param string $user_id
92
+	 */
90 93
 	function goodreads_user_id_exists( $user_id ) {
91 94
 		$url = "https://www.goodreads.com/user/show/$user_id/";
92 95
 		$response = wp_remote_head( $url, array( 'httpversion' => '1.1', 'timeout' => 3, 'redirection' => 2 ) );
Please login to merge, or discard this patch.
sync/class.jetpack-sync-module-users.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -94,6 +94,9 @@
 block discarded – undo
94 94
 		return $user;
95 95
 	}
96 96
 
97
+	/**
98
+	 * @param WP_User|null $user
99
+	 */
97 100
 	public function expand_user( $user ) {
98 101
 		if ( ! is_object( $user ) ) {
99 102
 			return null;
Please login to merge, or discard this patch.
modules/search/class.jetpack-search-helpers.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@
 block discarded – undo
50 50
 		return sprintf( '%s-%d', self::FILTER_WIDGET_BASE, $number );
51 51
 	}
52 52
 
53
+	/**
54
+	 * @param string $widget_id
55
+	 */
53 56
 	static function is_active_widget( $widget_id ) {
54 57
 		return (bool) is_active_widget( false, $widget_id, self::FILTER_WIDGET_BASE );
55 58
 	}
Please login to merge, or discard this patch.
modules/search/class.jetpack-search-widget-filters.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -578,6 +578,7 @@
 block discarded – undo
578 578
 	 * Responsible for rendering the search box within our widget on the frontend.
579 579
 	 *
580 580
 	 * @param array $instance
581
+	 * @param string $order
581 582
 	 */
582 583
 	function render_widget_search_form( $instance, $orderby, $order ) {
583 584
 		$form = get_search_form( false );
Please login to merge, or discard this patch.
_inc/lib/jetpack-wpes-query-builder/jetpack-wpes-query-parser.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -147,6 +147,10 @@
 block discarded – undo
147 147
 	 * Take a list of field prefixes and expand them for multi-lingual
148 148
 	 * with the provided boostings.
149 149
 	 */
150
+
151
+	/**
152
+	 * @param string[] $additional_fields
153
+	 */
150 154
 	public function merge_ml_fields( $fields2boosts, $additional_fields ) {
151 155
 		$flds = array();
152 156
 		foreach( $fields2boosts as $f => $b ) {
Please login to merge, or discard this patch.