Docs: Add some missing full stops in various DocBlocks.

Follow-up to [8196], [32846], [34928].

Props sujansarkar, shailu25, dhruvang21, westonruter, SergeyBiryukov.
Fixes #64181.
Built from https://develop.svn.wordpress.org/trunk@61139


git-svn-id: http://core.svn.wordpress.org/trunk@60475 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov
2025-11-04 19:51:35 +00:00
parent ccb6766a85
commit 0bf64c1bec
5 changed files with 8 additions and 8 deletions

View File

@@ -535,7 +535,7 @@ class WP_REST_Request implements ArrayAccess {
*
* @since 4.4.0
*
* @return array Parameter map of key to value
* @return array Parameter map of key to value.
*/
public function get_query_params() {
return $this->params['GET'];
@@ -587,7 +587,7 @@ class WP_REST_Request implements ArrayAccess {
*
* @since 4.4.0
*
* @return array Parameter map of key to value
* @return array Parameter map of key to value.
*/
public function get_file_params() {
return $this->params['FILES'];
@@ -613,7 +613,7 @@ class WP_REST_Request implements ArrayAccess {
*
* @since 4.4.0
*
* @return array Parameter map of key to value
* @return array Parameter map of key to value.
*/
public function get_default_params() {
return $this->params['defaults'];

View File

@@ -167,7 +167,7 @@ class WP_REST_Server {
* @since 4.4.0
*
* @return WP_Error|null|true WP_Error indicates unsuccessful login, null indicates successful
* or no authentication provided
* or no authentication provided.
*/
public function check_authentication() {
/**
@@ -227,7 +227,7 @@ class WP_REST_Server {
* @param string $code WP_Error-style code.
* @param string $message Human-readable message.
* @param int|null $status Optional. HTTP status code to send. Default null.
* @return string JSON representation of the error
* @return string JSON representation of the error.
*/
protected function json_error( $code, $message, $status = null ) {
if ( $status ) {

View File

@@ -319,7 +319,7 @@ function _filter_do_shortcode_context() {
* @global array $shortcode_tags
*
* @param array $tagnames Optional. List of shortcodes to find. Defaults to all registered shortcodes.
* @return string The shortcode search regular expression
* @return string The shortcode search regular expression.
*/
function get_shortcode_regex( $tagnames = null ) {
global $shortcode_tags;

View File

@@ -627,7 +627,7 @@ function get_embed_template() {
*
* @see get_query_template()
*
* @return string Full path to singular template file
* @return string Full path to singular template file.
*/
function get_singular_template() {
return get_query_template( 'singular' );

View File

@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.9-beta3-61138';
$wp_version = '6.9-beta3-61139';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.