Completed
Push — try/connection-split ( 933fe0...6328aa )
by
unknown
54:09 queued 45:08
created
sync/class.jetpack-sync-wp-replicastore.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -447,6 +447,10 @@  discard block
 block discarded – undo
447 447
 	}
448 448
 
449 449
 	// functions
450
+
451
+	/**
452
+	 * @param string $name
453
+	 */
450 454
 	public function get_callable( $name ) {
451 455
 		$value = get_option( 'jetpack_' . $name );
452 456
 
@@ -738,6 +742,9 @@  discard block
 block discarded – undo
738 742
 		return $histogram;
739 743
 	}
740 744
 
745
+	/**
746
+	 * @param string|null $id_column
747
+	 */
741 748
 	private function table_checksum( $table, $columns, $id_column, $where_sql = '1=1', $min_id = null, $max_id = null, $strip_non_ascii = true, $salt = '' ) {
742 749
 		global $wpdb;
743 750
 
@@ -791,6 +798,9 @@  discard block
 block discarded – undo
791 798
 		return 'sum';
792 799
 	}
793 800
 
801
+	/**
802
+	 * @param string $where_sql
803
+	 */
794 804
 	private function meta_count( $table, $where_sql, $min_id, $max_id ) {
795 805
 		global $wpdb;
796 806
 
Please login to merge, or discard this patch.
modules/shortcodes/soundcloud.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 /**
143 143
  * Plugin options getter
144 144
  *
145
- * @param  string|array $option  Option name.
145
+ * @param  string $option  Option name.
146 146
  * @param  mixed        $default Default value.
147 147
  *
148 148
  * @return mixed                   Option value
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
  *
159 159
  * @param string $url Soundcloud URL.
160 160
  *
161
- * @return boolean
161
+ * @return integer
162 162
  */
163 163
 function soundcloud_url_has_tracklist( $url ) {
164 164
 	return preg_match( '/^(.+?)\/(sets|groups|playlists)\/(.+?)$/', $url );
Please login to merge, or discard this patch.
packages/jetpack-connection/lib/Manager.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	/**
49 49
 	 * Returns true if the current site is connected to WordPress.com.
50 50
 	 *
51
-	 * @return Boolean is the site connected?
51
+	 * @return boolean|null is the site connected?
52 52
 	 */
53 53
 	public function is_active() {
54 54
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 	 * WordPress.com.
60 60
 	 *
61 61
 	 * @param Integer $user_id the user identifier.
62
-	 * @return Boolean is the user connected?
62
+	 * @return boolean|null is the user connected?
63 63
 	 */
64 64
 	public function is_user_connected( $user_id ) {
65 65
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	 * Is the user the connection owner.
80 80
 	 *
81 81
 	 * @param Integer $user_id the user identifier.
82
-	 * @return Boolean is the user the connection owner?
82
+	 * @return boolean|null is the user the connection owner?
83 83
 	 */
84 84
 	public function is_connection_owner( $user_id ) {
85 85
 
Please login to merge, or discard this patch.
packages/jetpack-options/lib/Manager.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@  discard block
 block discarded – undo
50 50
 		return $default;
51 51
 	}
52 52
 
53
+	/**
54
+	 * @param string $name
55
+	 */
53 56
 	protected function get_grouped_option( $group, $name, $default ) {
54 57
 		$options = get_option( $this->grouped_options[ $group ] );
55 58
 		if ( is_array( $options ) && isset( $options[ $name ] ) ) {
@@ -98,6 +101,9 @@  discard block
 block discarded – undo
98 101
 		return false;
99 102
 	}
100 103
 
104
+	/**
105
+	 * @param string $name
106
+	 */
101 107
 	protected function update_grouped_option( $group, $name, $value ) {
102 108
 		$options = get_option( $this->grouped_options[ $group ] );
103 109
 		if ( ! is_array( $options ) ) {
Please login to merge, or discard this patch.