Completed
Push — update/sync-home-siteurl-from-... ( 00fab3...db62c7 )
by
unknown
145:03 queued 137:47
created
sync/class.jetpack-sync-functions.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -130,6 +130,9 @@  discard block
 block discarded – undo
130 130
 		return self::get_protocol_normalized_url( 'main_network_site_url', network_site_url() );
131 131
 	}
132 132
 
133
+	/**
134
+	 * @param string $callable
135
+	 */
133 136
 	public static function get_protocol_normalized_url( $callable, $new_value ) {
134 137
 		$option_key = self::HTTPS_CHECK_OPTION_PREFIX . $callable;
135 138
 
@@ -152,6 +155,9 @@  discard block
 block discarded – undo
152 155
 		return set_url_scheme( $new_value, $forced_scheme );
153 156
 	}
154 157
 
158
+	/**
159
+	 * @param string $option_name
160
+	 */
155 161
 	public static function get_raw_url( $option_name ) {
156 162
 		global $wpdb;
157 163
 
@@ -182,6 +188,10 @@  discard block
 block discarded – undo
182 188
 		return $value;
183 189
 	}
184 190
 
191
+	/**
192
+	 * @param string $option
193
+	 * @param string $url_function
194
+	 */
185 195
 	public static function normalize_www_in_url( $option, $url_function ) {
186 196
 		$url        = wp_parse_url( call_user_func( $url_function ) );
187 197
 		$option_url = wp_parse_url( get_option( $option ) );
Please login to merge, or discard this patch.
3rd-party/domain-mapping.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -93,14 +93,24 @@
 block discarded – undo
93 93
 	 * So that we can test.
94 94
 	 */
95 95
 
96
+	/**
97
+	 * @param string $class
98
+	 * @param string $method
99
+	 */
96 100
 	public function method_exists( $class, $method ) {
97 101
 		return method_exists( $class, $method );
98 102
 	}
99 103
 
104
+	/**
105
+	 * @param string $class
106
+	 */
100 107
 	public function class_exists( $class ) {
101 108
 		return class_exists( $class );
102 109
 	}
103 110
 
111
+	/**
112
+	 * @param string $function
113
+	 */
104 114
 	public function function_exists( $function ) {
105 115
 		return function_exists( $function );
106 116
 	}
Please login to merge, or discard this patch.