Docs: Remove HTML markup from `WP_REST_URL_Details_Controller` class method summaries.

Per the [https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#summary-formerly-short-description WordPress PHP documentation standards], no HTML markup or Markdown of any kind should be used in the summary. This ensures that the summary is displayed correctly in the [https://developer.wordpress.org/reference/ WordPress Code Reference].

Props gvgvgvijayan, rsiddharth, azouamauriac, SergeyBiryukov.
Fixes #55506.
Built from https://develop.svn.wordpress.org/trunk@53048


git-svn-id: http://core.svn.wordpress.org/trunk@52637 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2022-04-01 11:35:05 +00:00
parent 5c6a8e9826
commit 9d3325a3a8
2 changed files with 8 additions and 8 deletions

View File

@ -124,7 +124,7 @@ class WP_REST_URL_Details_Controller extends WP_REST_Controller {
} }
/** /**
* Retrieves the contents of the `<title>` tag from the HTML response. * Retrieves the contents of the title tag from the HTML response.
* *
* @since 5.9.0 * @since 5.9.0
* *
@ -188,7 +188,7 @@ class WP_REST_URL_Details_Controller extends WP_REST_Controller {
} }
/** /**
* Checks whether a given request has permission to read remote urls. * Checks whether a given request has permission to read remote URLs.
* *
* @since 5.9.0 * @since 5.9.0
* *
@ -207,7 +207,7 @@ class WP_REST_URL_Details_Controller extends WP_REST_Controller {
return new WP_Error( return new WP_Error(
'rest_cannot_view_url_details', 'rest_cannot_view_url_details',
__( 'Sorry, you are not allowed to process remote urls.' ), __( 'Sorry, you are not allowed to process remote URLs.' ),
array( 'status' => rest_authorization_required_code() ) array( 'status' => rest_authorization_required_code() )
); );
} }
@ -242,7 +242,7 @@ class WP_REST_URL_Details_Controller extends WP_REST_Controller {
/** /**
* Filters the HTTP request args for URL data retrieval. * Filters the HTTP request args for URL data retrieval.
* *
* Can be used to adjust response size limit and other WP_Http::request args. * Can be used to adjust response size limit and other WP_Http::request() args.
* *
* @since 5.9.0 * @since 5.9.0
* *
@ -276,7 +276,7 @@ class WP_REST_URL_Details_Controller extends WP_REST_Controller {
} }
/** /**
* Parses the `<title>` contents from the provided HTML. * Parses the title tag contents from the provided HTML.
* *
* @since 5.9.0 * @since 5.9.0
* *
@ -482,7 +482,7 @@ class WP_REST_URL_Details_Controller extends WP_REST_Controller {
} }
/** /**
* Retrieves the `<head>` section. * Retrieves the head tag section.
* *
* @since 5.9.0 * @since 5.9.0
* *
@ -519,7 +519,7 @@ class WP_REST_URL_Details_Controller extends WP_REST_Controller {
} }
/** /**
* Gets all the `<meta>` elements that have a `content` attribute. * Gets all the meta tag elements that have a 'content' attribute.
* *
* @since 5.9.0 * @since 5.9.0
* *

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.0-alpha-53047'; $wp_version = '6.0-alpha-53048';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.