@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | * |
| 46 | 46 | * @param array $allowed_post_types Allowed post types. |
| 47 | 47 | * |
| 48 | - * @return array |
|
| 48 | + * @return string[] |
|
| 49 | 49 | */ |
| 50 | 50 | public function allow_bbpress_post_types( $allowed_post_types ) { |
| 51 | 51 | $allowed_post_types[] = 'forum'; |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @param array $allowed_meta_keys Allowed meta keys. |
| 61 | 61 | * |
| 62 | - * @return array |
|
| 62 | + * @return string[] |
|
| 63 | 63 | */ |
| 64 | 64 | public function allow_bbpress_public_metadata( $allowed_meta_keys ) { |
| 65 | 65 | $allowed_meta_keys[] = '_bbp_forum_id'; |
@@ -410,7 +410,7 @@ |
||
| 410 | 410 | * |
| 411 | 411 | * @param Mixed $needle the needle. |
| 412 | 412 | * @param array $haystack the haystack. |
| 413 | - * @return is the needle not in the haystack? |
|
| 413 | + * @return boolean the needle not in the haystack? |
|
| 414 | 414 | */ |
| 415 | 415 | protected function negative_in_array( $needle, $haystack ) { |
| 416 | 416 | if ( in_array( $needle, $haystack, true ) ) { |
@@ -143,7 +143,7 @@ |
||
| 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' ); |
@@ -154,7 +154,7 @@ |
||
| 154 | 154 | * @param string $avatar The <img/> element of the avatar. |
| 155 | 155 | * @param mixed $author User ID, email address, user login, comment object, user object, post object |
| 156 | 156 | * |
| 157 | - * @return The <img/> element of the avatar. |
|
| 157 | + * @return string <img/> element of the avatar. |
|
| 158 | 158 | */ |
| 159 | 159 | function grofiles_get_avatar( $avatar, $author ) { |
| 160 | 160 | $is_amp = class_exists( 'Jetpack_AMP_Support' ) && Jetpack_AMP_Support::is_amp_request(); |
@@ -514,7 +514,7 @@ |
||
| 514 | 514 | * Send a synchronous XML-RPC subscribe to blog posts or subscribe to post comments request. |
| 515 | 515 | * |
| 516 | 516 | * @param string $email |
| 517 | - * @param array $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
| 517 | + * @param integer $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
| 518 | 518 | * @param bool $async (optional) Should the subscription be performed asynchronously? Defaults to true. |
| 519 | 519 | * |
| 520 | 520 | * @return true|WP_Error true on success |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | * |
| 39 | 39 | * A null argument will log the file and line number of the l() call. |
| 40 | 40 | * |
| 41 | - * @param mixed $stuff Information to log. |
|
| 41 | + * @param string $stuff Information to log. |
|
| 42 | 42 | */ |
| 43 | 43 | function l( $stuff = null ) { |
| 44 | 44 | // Do nothing when debugging is off. |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | * |
| 167 | 167 | * @param string $name Timer name. |
| 168 | 168 | * |
| 169 | - * @return mixed void or elapsed time. |
|
| 169 | + * @return null|double void or elapsed time. |
|
| 170 | 170 | */ |
| 171 | 171 | function e( $name = '' ) { |
| 172 | 172 | static $times = array(); |
@@ -433,6 +433,9 @@ |
||
| 433 | 433 | ); |
| 434 | 434 | } |
| 435 | 435 | |
| 436 | + /** |
|
| 437 | + * @param string $column |
|
| 438 | + */ |
|
| 436 | 439 | function _build_date_range_query( $column, $range, $where ) { |
| 437 | 440 | global $wpdb; |
| 438 | 441 | |
@@ -15,6 +15,9 @@ |
||
| 15 | 15 | exit; |
| 16 | 16 | } |
| 17 | 17 | |
| 18 | +/** |
|
| 19 | + * @param string $file_pattern |
|
| 20 | + */ |
|
| 18 | 21 | function wpcom_rest_api_v2_load_plugin_files( $file_pattern ) { |
| 19 | 22 | $plugins = glob( dirname( __FILE__ ) . '/' . $file_pattern ); |
| 20 | 23 | |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | /** |
| 43 | 43 | * Singleton implementation |
| 44 | 44 | * |
| 45 | - * @return object |
|
| 45 | + * @return Jetpack_Photon|null |
|
| 46 | 46 | */ |
| 47 | 47 | public static function instance() { |
| 48 | 48 | if ( ! is_a( self::$instance, 'Jetpack_Photon' ) ) { |
@@ -1382,7 +1382,7 @@ discard block |
||
| 1382 | 1382 | * after ourselves without breaking anyone else's filters. |
| 1383 | 1383 | * |
| 1384 | 1384 | * @internal |
| 1385 | - * @return true |
|
| 1385 | + * @return boolean |
|
| 1386 | 1386 | */ |
| 1387 | 1387 | public function override_image_downsize_in_rest_edit_context() { |
| 1388 | 1388 | return true; |