Completed
Push — branch-7.5-built ( c0c607...62d35c )
by Jeremy
20:53 queued 09:36
created
packages/sync/legacy/class.jetpack-sync-wp-replicastore.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -444,6 +444,10 @@  discard block
 block discarded – undo
444 444
 	}
445 445
 
446 446
 	// functions
447
+
448
+	/**
449
+	 * @param string $name
450
+	 */
447 451
 	public function get_callable( $name ) {
448 452
 		$value = get_option( 'jetpack_' . $name );
449 453
 
@@ -642,6 +646,10 @@  discard block
 block discarded – undo
642 646
 		);
643 647
 	}
644 648
 
649
+	/**
650
+	 * @param string $object_type
651
+	 * @param integer $buckets
652
+	 */
645 653
 	function checksum_histogram( $object_type, $buckets, $start_id = null, $end_id = null, $columns = null, $strip_non_ascii = true, $salt = '' ) {
646 654
 		global $wpdb;
647 655
 
@@ -735,6 +743,9 @@  discard block
 block discarded – undo
735 743
 		return $histogram;
736 744
 	}
737 745
 
746
+	/**
747
+	 * @param string|null $id_column
748
+	 */
738 749
 	private function table_checksum( $table, $columns, $id_column, $where_sql = '1=1', $min_id = null, $max_id = null, $strip_non_ascii = true, $salt = '' ) {
739 750
 		global $wpdb;
740 751
 
@@ -786,6 +797,9 @@  discard block
 block discarded – undo
786 797
 		return 'sum';
787 798
 	}
788 799
 
800
+	/**
801
+	 * @param string $where_sql
802
+	 */
789 803
 	private function meta_count( $table, $where_sql, $min_id, $max_id ) {
790 804
 		global $wpdb;
791 805
 
Please login to merge, or discard this patch.