Completed
Push — update/build-sort-by-deps ( e2d820...b39fe2 )
by
unknown
58:05 queued 47:05
created
projects/plugins/jetpack/modules/protect/transient-cleanup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 	 *
11 11
 	 * @access public
12 12
 	 * @param string $older_than (default: '1 hour') Older Than.
13
-	 * @return void
13
+	 * @return false|null
14 14
 	 */
15 15
 	function jp_purge_transients( $older_than = '1 hour' ) {
16 16
 		global $wpdb;
Please login to merge, or discard this patch.
projects/plugins/jetpack/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.
projects/plugins/jetpack/modules/publicize/ui.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -415,7 +415,7 @@
 block discarded – undo
415 415
 	 *
416 416
 	 * @param array $connections_data
417 417
 	 *
418
-	 * @return array {
418
+	 * @return string {
419 419
 	 *     Array of content for generating connection form.
420 420
 	 *
421 421
 	 *     @type string HTML content of form
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/related-posts/jetpack-related-posts.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -294,6 +294,9 @@  discard block
 block discarded – undo
294 294
 		return $this->_options;
295 295
 	}
296 296
 	
297
+	/**
298
+	 * @param string $option_name
299
+	 */
297 300
 	public function get_option( $option_name ) {
298 301
 		$options = $this->get_options();
299 302
 		
@@ -1428,6 +1431,8 @@  discard block
 block discarded – undo
1428 1431
 	 * Enqueues assets needed to do async loading of related posts.
1429 1432
 	 *
1430 1433
 	 * @uses wp_enqueue_script, wp_enqueue_style, plugins_url
1434
+	 * @param boolean $script
1435
+	 * @param boolean $style
1431 1436
 	 * @return null
1432 1437
 	 */
1433 1438
 	protected function _enqueue_assets( $script, $style ) {
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/scan/class-admin-bar-notice.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@
 block discarded – undo
143 143
 	/**
144 144
 	 *
145 145
 	 * Return Whether boolean cached threats exist or null if the state is unknown.
146
-	 * * @return boolean or null
146
+	 * * @return null|boolean or null
147 147
 	 */
148 148
 	public function has_threats() {
149 149
 		$scan_state = get_transient( 'jetpack_scan_state' );
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/search/class.jetpack-search-helpers.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,6 @@
 block discarded – undo
76 76
 	 * @since 5.8.0
77 77
 	 *
78 78
 	 * @param string|array $key   Query key or keys to remove.
79
-	 * @param bool|string  $query Optional. A URL to act upon.  Defaults to the current search URL.
80 79
 	 *
81 80
 	 * @return string New URL query string (unescaped).
82 81
 	 */
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/sharedaddy/recaptcha.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 	/**
69 69
 	 * Get default config for this reCAPTCHA instance.
70 70
 	 *
71
-	 * @return array Default config
71
+	 * @return string Default config
72 72
 	 */
73 73
 	public function get_default_config() {
74 74
 		return array(
Please login to merge, or discard this patch.
projects/plugins/jetpack/modules/sharedaddy/sharing-service.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -505,6 +505,9 @@
 block discarded – undo
505 505
 	public $service = '';
506 506
 	public $total   = 0;
507 507
 
508
+	/**
509
+	 * @param integer $total
510
+	 */
508 511
 	public function __construct( $id, $total ) {
509 512
 		$services      = new Sharing_Service();
510 513
 		$this->id      = esc_html( $id );
Please login to merge, or discard this patch.
plugins/jetpack/modules/shortcodes/class.filter-embedded-html-objects.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@
 block discarded – undo
231 231
 	/**
232 232
 	 * Filter and replace HTML element.
233 233
 	 *
234
-	 * @param array  $matches Array of matches.
234
+	 * @param string[]  $matches Array of matches.
235 235
 	 * @param string $orig_html Original html. Returned if no results are found via $matches processing.
236 236
 	 */
237 237
 	private static function dispatch( $matches, $orig_html = null ) {
Please login to merge, or discard this patch.