@@ -447,6 +447,10 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -22,7 +22,7 @@ |
||
22 | 22 | /** |
23 | 23 | * Converts GlotPress URL into a GlotPress API URL |
24 | 24 | * |
25 | - * @param sring $url URL |
|
25 | + * @param string $url URL |
|
26 | 26 | * @return sstring API URL |
27 | 27 | */ |
28 | 28 | function apize_url( $url ) { |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * WordPress.com. |
60 | 60 | * |
61 | 61 | * @param Integer $user_id the user identifier. |
62 | - * @return Boolean is the user connected? |
|
62 | + * @return integer is the user connected? |
|
63 | 63 | */ |
64 | 64 | public function is_user_connected( $user_id ) { |
65 | 65 | return $user_id; |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * Get the wpcom user data of the current|specified connected user. |
70 | 70 | * |
71 | 71 | * @param Integer $user_id the user identifier. |
72 | - * @return Object the user object. |
|
72 | + * @return integer the user object. |
|
73 | 73 | */ |
74 | 74 | public function get_connected_user_data( $user_id ) { |
75 | 75 | return $user_id; |
@@ -79,7 +79,7 @@ discard block |
||
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 integer is the user the connection owner? |
|
83 | 83 | */ |
84 | 84 | public function is_connection_owner( $user_id ) { |
85 | 85 | return $user_id; |