Completed
Push — add/changelog-58 ( 5598a7...9db809 )
by Jeremy
10:21
created
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   +4 added lines patch added patch discarded remove patch
@@ -239,6 +239,9 @@  discard block
 block discarded – undo
239 239
 		echo $args['after_widget'];
240 240
 	}
241 241
 
242
+	/**
243
+	 * @param string $order
244
+	 */
242 245
 	private function maybe_render_javascript( $instance, $order, $orderby ) {
243 246
 		if ( ! empty( $instance['user_sort_enabled'] ) ): ?>
244 247
 		<!--
@@ -594,6 +597,7 @@  discard block
 block discarded – undo
594 597
 	 * Responsible for rendering the search box within our widget on the frontend.
595 598
 	 *
596 599
 	 * @param array $instance
600
+	 * @param string $order
597 601
 	 */
598 602
 	function render_widget_search_form( $instance, $orderby, $order ) {
599 603
 		$form = get_search_form( false );
Please login to merge, or discard this patch.