Completed
Push — update/at-a-glance-rewind ( b29933...c7fd1f )
by
unknown
33:43 queued 26:58
created
modules/publicize/publicize-jetpack.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -682,6 +682,9 @@
 block discarded – undo
682 682
 		$this->options_save_other( 'linkedin' );
683 683
 	}
684 684
 
685
+	/**
686
+	 * @param string $service_name
687
+	 */
685 688
 	function options_save_other( $service_name ) {
686 689
 		// Nonce check
687 690
 		check_admin_referer( 'save_' . $service_name . '_token_' . $_REQUEST['connection'] );
Please login to merge, or discard this patch.
json-endpoints/jetpack/class.jetpack-json-api-plugins-modify-endpoint.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -244,6 +244,9 @@
 block discarded – undo
244 244
 		}
245 245
 	}
246 246
 
247
+	/**
248
+	 * @param string $capability
249
+	 */
247 250
 	protected function current_user_can( $capability, $plugin = null ) {
248 251
 		if ( $plugin ) {
249 252
 			return current_user_can( $capability, $plugin );
Please login to merge, or discard this patch.
modules/plugin-search.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -543,6 +543,7 @@
 block discarded – undo
543 543
  * @internal
544 544
  *
545 545
  * @param bool &$error Did the remote request result in an error?
546
+ * @param boolean $error
546 547
  * @return bool True if PSH is active.
547 548
  */
548 549
 function jetpack_get_remote_is_psh_active( &$error ) {
Please login to merge, or discard this patch.
class.jetpack-gutenberg.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -424,7 +424,7 @@
 block discarded – undo
424 424
 	 * Only enqueue block assets when needed.
425 425
 	 *
426 426
 	 * @param string $type Slug of the block.
427
-	 * @param array  $script_dependencies An array of view-side Javascript dependencies to be enqueued.
427
+	 * @param string[]  $script_dependencies An array of view-side Javascript dependencies to be enqueued.
428 428
 	 *
429 429
 	 * @return void
430 430
 	 */
Please login to merge, or discard this patch.
_inc/lib/class.jetpack-password-checker.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -410,7 +410,7 @@
 block discarded – undo
410 410
 	 *
411 411
 	 * @param Mixed $needle the needle.
412 412
 	 * @param Array $haystack the haystack.
413
-	 * @return is the needle not in the haystack?
413
+	 * @return boolean the needle not in the haystack?
414 414
 	 */
415 415
 	protected function negative_in_array( $needle, $haystack ) {
416 416
 		if ( in_array( $needle, $haystack, true ) ) {
Please login to merge, or discard this patch.