Changeset 48508
- Timestamp:
- 07/18/2020 10:09:57 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-plugin-installer-skin.php
r48455 r48508 63 63 * @since 5.5.0 64 64 * 65 * @param $wp_error WP_Error.65 * @param WP_Error $wp_error WP_Error. 66 66 * @return bool 67 67 */ -
trunk/src/wp-admin/includes/class-theme-installer-skin.php
r48455 r48508 63 63 * @since 5.5.0 64 64 * 65 * @param $wp_error WP_Error.65 * @param WP_Error $wp_error WP_Error. 66 66 * @return bool 67 67 */ -
trunk/src/wp-admin/includes/class-wp-privacy-policy-content.php
r48234 r48508 156 156 * @since 4.9.6 157 157 * @access private 158 * 159 * @param int $post_id The ID of the updated post. 158 160 */ 159 161 public static function _policy_page_updated( $post_id ) { -
trunk/src/wp-admin/includes/class-wp-screen.php
r48473 r48508 1042 1042 * 1043 1043 * @param array $options { 1044 * @type bool $wrap Whether the screen-options-wrap div will be included. Defaults to true. 1044 * Options for the tab. 1045 * 1046 * @type bool $wrap Whether the screen-options-wrap div will be included. Defaults to true. 1045 1047 * } 1046 1048 */ -
trunk/src/wp-admin/includes/class-wp-upgrader-skin.php
r48390 r48508 212 212 * @since 5.5.0 213 213 * 214 * @param $wp_error WP_Error214 * @param WP_Error $wp_error WP_Error 215 215 * @return bool 216 216 */ -
trunk/src/wp-admin/includes/image.php
r47461 r48508 12 12 * @since 2.1.0 13 13 * 14 * @param string|int $src The source file or Attachment ID.15 * @param int $src_xThe start x position to crop from.16 * @param int $src_yThe start y position to crop from.17 * @param int $src_wThe width to crop.18 * @param int $src_hThe height to crop.19 * @param int $dst_wThe destination width.20 * @param int $dst_hThe destination height.21 * @param int $src_absOptional. If the source crop points are absolute.22 * @param string $dst_file Optional. The destination file to write to.14 * @param string|int $src The source file or Attachment ID. 15 * @param int $src_x The start x position to crop from. 16 * @param int $src_y The start y position to crop from. 17 * @param int $src_w The width to crop. 18 * @param int $src_h The height to crop. 19 * @param int $dst_w The destination width. 20 * @param int $dst_h The destination height. 21 * @param bool $src_abs Optional. If the source crop points are absolute. 22 * @param string $dst_file Optional. The destination file to write to. 23 23 * @return string|WP_Error New filepath on success, WP_Error on failure. 24 24 */ -
trunk/src/wp-admin/includes/ms.php
r48316 r48508 1019 1019 * @since 4.6.0 1020 1020 * 1021 * @param $args {1021 * @param array $args { 1022 1022 * Optional. Array or string of Query parameters. Default empty array. 1023 1023 * -
trunk/src/wp-includes/class-wp-recovery-mode-email-service.php
r48102 r48508 134 134 * @since 5.2.0 135 135 * 136 * @param $message stringThe Message to include in the email.136 * @param string $message The Message to include in the email. 137 137 */ 138 138 $support = apply_filters( 'recovery_email_support_info', __( 'Please contact your host for assistance with investigating this issue further.' ) ); … … 143 143 * @since 5.3.0 144 144 * 145 * @param $message array An associatedarray of debug information.145 * @param array $message An associative array of debug information. 146 146 */ 147 147 $debug = apply_filters( 'recovery_email_debug_info', $this->get_debug( $extension ) );
Note: See TracChangeset
for help on using the changeset viewer.