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:
@@ -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'];
|
||||
|
||||
@@ -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 ) {
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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' );
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user