Completed
Pull Request — update/connect-media-source-wi... (#18369)
by
unknown
537:36 queued 525:39
created
projects/packages/sync/src/class-functions.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 	/**
182 182
 	 * Return a hosting provider using a set of known constants.
183 183
 	 *
184
-	 * @return mixed A host identifier string or false.
184
+	 * @return string|false A host identifier string or false.
185 185
 	 */
186 186
 	public function get_hosting_provider_by_known_constant() {
187 187
 		$hosting_provider_constants = array(
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 	/**
210 210
 	 * Return a hosting provider using a set of known classes.
211 211
 	 *
212
-	 * @return mixed A host identifier string or false.
212
+	 * @return string|false A host identifier string or false.
213 213
 	 */
214 214
 	public function get_hosting_provider_by_known_class() {
215 215
 		$hosting_provider = false;
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 	/**
227 227
 	 * Return a hosting provider using a set of known functions.
228 228
 	 *
229
-	 * @return mixed A host identifier string or false.
229
+	 * @return string|false A host identifier string or false.
230 230
 	 */
231 231
 	public function get_hosting_provider_by_known_function() {
232 232
 		$hosting_provider = false;
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
 	 *
442 442
 	 * @param string   $option Option value from the site.
443 443
 	 * @param callable $url_function Function retrieving the URL to normalize.
444
-	 * @return mixed|string URL.
444
+	 * @return callable URL.
445 445
 	 */
446 446
 	public static function normalize_www_in_url( $option, $url_function ) {
447 447
 		$url        = wp_parse_url( call_user_func( $url_function ) );
Please login to merge, or discard this patch.
projects/packages/sync/src/class-json-deflate-array-codec.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
 	/**
77 77
 	 * Wraps JSON
78 78
 	 *
79
-	 * @param object|array $any Wrapping value.
79
+	 * @param string $any Wrapping value.
80 80
 	 * @param array        $seen_nodes Seen nodes.
81 81
 	 * @return array
82 82
 	 */
Please login to merge, or discard this patch.
projects/packages/sync/src/class-listener.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
 	 * Prevent adding items to the queue if it hasn't sent an item for 15 mins
158 158
 	 * AND the queue is over 1000 items long (by default).
159 159
 	 *
160
-	 * @param object $queue Sync queue.
160
+	 * @param string $queue Sync queue.
161 161
 	 * @return bool
162 162
 	 */
163 163
 	public function can_add_to_queue( $queue ) {
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
 	 * Sync Data Loss Handler
361 361
 	 *
362 362
 	 * @param Queue $queue Sync queue.
363
-	 * @return boolean was send successful
363
+	 * @return null|Items was send successful
364 364
 	 */
365 365
 	public function sync_data_loss( $queue ) {
366 366
 		if ( ! Settings::is_sync_enabled() ) {
Please login to merge, or discard this patch.
projects/packages/sync/src/class-replicastore.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -325,7 +325,7 @@
 block discarded – undo
325 325
 	 * @access protected
326 326
 	 *
327 327
 	 * @param string $status Comment status.
328
-	 * @return string|bool New comment_approved value, false if the status doesn't affect it.
328
+	 * @return string|false New comment_approved value, false if the status doesn't affect it.
329 329
 	 */
330 330
 	protected function comment_status_to_approval_value( $status ) {
331 331
 		switch ( (string) $status ) {
Please login to merge, or discard this patch.
projects/packages/sync/src/class-server.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 	 *
65 65
 	 * @access public
66 66
 	 *
67
-	 * @param Automattic\Jetpack\Sync\Codec_Interface $codec Codec instance.
67
+	 * @param Codec_Interface $codec Codec instance.
68 68
 	 */
69 69
 	public function set_codec( Codec_Interface $codec ) {
70 70
 		$this->codec = $codec;
Please login to merge, or discard this patch.
projects/packages/sync/src/modules/class-callables.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 	 * @access public
223 223
 	 *
224 224
 	 * @param array $config Full sync configuration for this sync module.
225
-	 * @return array Number of items yet to be enqueued.
225
+	 * @return integer Number of items yet to be enqueued.
226 226
 	 */
227 227
 	public function estimate_full_sync_actions( $config ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
228 228
 		return 1;
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 	 *
234 234
 	 * @access public
235 235
 	 *
236
-	 * @return array Full sync actions of this module.
236
+	 * @return string[] Full sync actions of this module.
237 237
 	 */
238 238
 	public function get_full_sync_actions() {
239 239
 		return array( 'jetpack_full_sync_callables' );
Please login to merge, or discard this patch.
projects/packages/sync/src/modules/class-comments.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@
 block discarded – undo
220 220
 	 *
221 221
 	 * @access public
222 222
 	 *
223
-	 * @return array Full sync actions of this module.
223
+	 * @return string[] Full sync actions of this module.
224 224
 	 */
225 225
 	public function get_full_sync_actions() {
226 226
 		return array( 'jetpack_full_sync_comments' );
Please login to merge, or discard this patch.
projects/packages/sync/src/modules/class-constants.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 	 *
159 159
 	 * @param array $config Full sync configuration for this sync module.
160 160
 	 *
161
-	 * @return array Number of items yet to be enqueued.
161
+	 * @return integer Number of items yet to be enqueued.
162 162
 	 */
163 163
 	public function estimate_full_sync_actions( $config ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
164 164
 		return 1;
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 	 *
170 170
 	 * @access public
171 171
 	 *
172
-	 * @return array Full sync actions of this module.
172
+	 * @return string[] Full sync actions of this module.
173 173
 	 */
174 174
 	public function get_full_sync_actions() {
175 175
 		return array( 'jetpack_full_sync_constants' );
Please login to merge, or discard this patch.
projects/packages/sync/src/modules/class-full-sync-immediately.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
 	 *
150 150
 	 * @access public
151 151
 	 *
152
-	 * @return int|null
152
+	 * @return null|double
153 153
 	 */
154 154
 	public function get_sync_progress_percentage() {
155 155
 		if ( ! $this->is_started() || $this->is_finished() ) {
Please login to merge, or discard this patch.