@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | * |
| 17 | 17 | * @param string $type The type of option to return. Defaults to 'compact'. |
| 18 | 18 | * |
| 19 | - * @return array |
|
| 19 | + * @return string[] |
|
| 20 | 20 | */ |
| 21 | 21 | public static function get_option_names( $type = 'compact' ) { |
| 22 | 22 | switch ( $type ) { |
@@ -199,6 +199,9 @@ discard block |
||
| 199 | 199 | return $value; |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | + /** |
|
| 203 | + * @param string $name |
|
| 204 | + */ |
|
| 202 | 205 | private static function update_grouped_option( $group, $name, $value ) { |
| 203 | 206 | $options = get_option( self::$grouped_options[ $group ] ); |
| 204 | 207 | if ( ! is_array( $options ) ) { |
@@ -301,6 +304,9 @@ discard block |
||
| 301 | 304 | return $result; |
| 302 | 305 | } |
| 303 | 306 | |
| 307 | + /** |
|
| 308 | + * @param string $name |
|
| 309 | + */ |
|
| 304 | 310 | private static function get_grouped_option( $group, $name, $default ) { |
| 305 | 311 | $options = get_option( self::$grouped_options[ $group ] ); |
| 306 | 312 | if ( is_array( $options ) && isset( $options[ $name ] ) ) { |
@@ -420,7 +426,7 @@ discard block |
||
| 420 | 426 | * This function checks for a constant that, if present, will disable direct DB queries Jetpack uses to manage certain options and force Jetpack to always use Options API instead. |
| 421 | 427 | * Options can be selectively managed via a blacklist by filtering option names via the jetpack_disabled_raw_option filter. |
| 422 | 428 | * |
| 423 | - * @param $name Option name |
|
| 429 | + * @param string $name Option name |
|
| 424 | 430 | * |
| 425 | 431 | * @return bool |
| 426 | 432 | */ |
@@ -445,7 +451,7 @@ discard block |
||
| 445 | 451 | * @since 5.4.0 |
| 446 | 452 | * |
| 447 | 453 | * @param boolean $strip_unsafe_options If true, and by default, will strip out options necessary for the connection to WordPress.com. |
| 448 | - * @return array An array of all options managed via the Jetpack_Options class. |
|
| 454 | + * @return string[] An array of all options managed via the Jetpack_Options class. |
|
| 449 | 455 | */ |
| 450 | 456 | static function get_all_jetpack_options( $strip_unsafe_options = true ) { |
| 451 | 457 | $jetpack_options = self::get_option_names(); |
@@ -488,7 +494,7 @@ discard block |
||
| 488 | 494 | * |
| 489 | 495 | * @since 5.4.0 |
| 490 | 496 | * |
| 491 | - * @return array |
|
| 497 | + * @return string[] |
|
| 492 | 498 | */ |
| 493 | 499 | static function get_all_wp_options() { |
| 494 | 500 | // A manual build of the wp options |
@@ -148,6 +148,7 @@ discard block |
||
| 148 | 148 | * Helper function that is used when getting home or siteurl values. Decides |
| 149 | 149 | * whether to get the raw or filtered value. |
| 150 | 150 | * |
| 151 | + * @param string $url_type |
|
| 151 | 152 | * @return string |
| 152 | 153 | */ |
| 153 | 154 | public static function get_raw_or_filtered_url( $url_type ) { |
@@ -197,6 +198,9 @@ discard block |
||
| 197 | 198 | return self::get_protocol_normalized_url( 'main_network_site_url', network_site_url() ); |
| 198 | 199 | } |
| 199 | 200 | |
| 201 | + /** |
|
| 202 | + * @param string $callable |
|
| 203 | + */ |
|
| 200 | 204 | public static function get_protocol_normalized_url( $callable, $new_value ) { |
| 201 | 205 | $option_key = self::HTTPS_CHECK_OPTION_PREFIX . $callable; |
| 202 | 206 | |
@@ -236,6 +240,9 @@ discard block |
||
| 236 | 240 | return $value; |
| 237 | 241 | } |
| 238 | 242 | |
| 243 | + /** |
|
| 244 | + * @param string $url_function |
|
| 245 | + */ |
|
| 239 | 246 | public static function normalize_www_in_url( $option, $url_function ) { |
| 240 | 247 | $url = wp_parse_url( call_user_func( $url_function ) ); |
| 241 | 248 | $option_url = wp_parse_url( get_option( $option ) ); |
@@ -42,6 +42,9 @@ discard block |
||
| 42 | 42 | return array(); |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | + /** |
|
| 46 | + * @param string[] $actions_to_count |
|
| 47 | + */ |
|
| 45 | 48 | protected function count_actions( $action_names, $actions_to_count ) { |
| 46 | 49 | return count( array_intersect( $action_names, $actions_to_count ) ); |
| 47 | 50 | } |
@@ -58,6 +61,10 @@ discard block |
||
| 58 | 61 | return false; |
| 59 | 62 | } |
| 60 | 63 | |
| 64 | + /** |
|
| 65 | + * @param string $action_name |
|
| 66 | + * @param string $id_field |
|
| 67 | + */ |
|
| 61 | 68 | protected function enqueue_all_ids_as_action( $action_name, $table_name, $id_field, $where_sql, $max_items_to_enqueue, $state ) { |
| 62 | 69 | global $wpdb; |
| 63 | 70 | |
@@ -111,6 +118,9 @@ discard block |
||
| 111 | 118 | return $chunks_with_ends; |
| 112 | 119 | } |
| 113 | 120 | |
| 121 | + /** |
|
| 122 | + * @param string $meta_type |
|
| 123 | + */ |
|
| 114 | 124 | protected function get_metadata( $ids, $meta_type, $meta_key_whitelist ) { |
| 115 | 125 | global $wpdb; |
| 116 | 126 | $table = _get_meta_table( $meta_type ); |
@@ -131,12 +141,18 @@ discard block |
||
| 131 | 141 | ); |
| 132 | 142 | } |
| 133 | 143 | |
| 144 | + /** |
|
| 145 | + * @param string $meta_type |
|
| 146 | + */ |
|
| 134 | 147 | public function init_listeners_for_meta_type( $meta_type, $callable ) { |
| 135 | 148 | add_action( "added_{$meta_type}_meta", $callable, 10, 4 ); |
| 136 | 149 | add_action( "updated_{$meta_type}_meta", $callable, 10, 4 ); |
| 137 | 150 | add_action( "deleted_{$meta_type}_meta", $callable, 10, 4 ); |
| 138 | 151 | } |
| 139 | 152 | |
| 153 | + /** |
|
| 154 | + * @param string $meta_type |
|
| 155 | + */ |
|
| 140 | 156 | public function init_meta_whitelist_handler( $meta_type, $whitelist_handler ) { |
| 141 | 157 | add_filter( "jetpack_sync_before_enqueue_added_{$meta_type}_meta", $whitelist_handler ); |
| 142 | 158 | add_filter( "jetpack_sync_before_enqueue_updated_{$meta_type}_meta", $whitelist_handler ); |
@@ -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 ) { |
@@ -183,7 +183,6 @@ |
||
| 183 | 183 | /** |
| 184 | 184 | * Record an event in Tracks - this is the preferred way to record events from PHP. |
| 185 | 185 | * |
| 186 | - * @param mixed $identity username, user_id, or WP_user object |
|
| 187 | 186 | * @param string $event_name The name of the event |
| 188 | 187 | * @param array $properties Custom properties to send with the event |
| 189 | 188 | * @param int $event_timestamp_millis The time in millis since 1970-01-01 00:00:00 when the event occurred |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * record_event |
| 51 | - * @param mixed $event Event object to send to Tracks. An array will be cast to object. Required. |
|
| 51 | + * @param Jetpack_Tracks_Event $event Event object to send to Tracks. An array will be cast to object. Required. |
|
| 52 | 52 | * Properties are included directly in the pixel query string after light validation. |
| 53 | 53 | * @return mixed True on success, WP_Error on failure |
| 54 | 54 | */ |
@@ -71,6 +71,7 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | 73 | * Synchronously request the pixel |
| 74 | + * @param string $pixel |
|
| 74 | 75 | */ |
| 75 | 76 | static function record_pixel( $pixel ) { |
| 76 | 77 | // Add the Request Timestamp and URL terminator just before the HTTP request. |
@@ -143,7 +143,6 @@ discard block |
||
| 143 | 143 | /** |
| 144 | 144 | * Mock a set of filters. |
| 145 | 145 | * |
| 146 | - * @param array $args Array of filters with their arguments. |
|
| 147 | 146 | * @return phpmock\Mock The mock object. |
| 148 | 147 | */ |
| 149 | 148 | protected function mock_filters( $filters = array() ) { |
@@ -153,8 +152,7 @@ discard block |
||
| 153 | 152 | /** |
| 154 | 153 | * Mock a set of constants. |
| 155 | 154 | * |
| 156 | - * @param array $args Array of sets with constants and their respective values. |
|
| 157 | - * @return phpmock\Mock The mock object. |
|
| 155 | + * @return phpmock\Mock[] The mock object. |
|
| 158 | 156 | */ |
| 159 | 157 | protected function mock_constants( $constants = array() ) { |
| 160 | 158 | $prepare_constant = function( $constant ) { |
@@ -171,7 +169,7 @@ discard block |
||
| 171 | 169 | * Mock a global function and make it return a certain value. |
| 172 | 170 | * |
| 173 | 171 | * @param string $function_name Name of the function. |
| 174 | - * @param mixed $return_value Return value of the function. |
|
| 172 | + * @param string $return_value Return value of the function. |
|
| 175 | 173 | * @return phpmock\Mock The mock object. |
| 176 | 174 | */ |
| 177 | 175 | protected function mock_function( $function_name, $return_value = null ) { |
@@ -115,7 +115,7 @@ |
||
| 115 | 115 | * Mock a global function and make it return a certain value. |
| 116 | 116 | * |
| 117 | 117 | * @param string $function_name Name of the function. |
| 118 | - * @param mixed $return_value Return value of the function. |
|
| 118 | + * @param integer $return_value Return value of the function. |
|
| 119 | 119 | * @return phpmock\Mock The mock object. |
| 120 | 120 | */ |
| 121 | 121 | protected function mock_function( $function_name, $return_value = null ) { |