diff --git a/wp-includes/rest-api/class-wp-rest-request.php b/wp-includes/rest-api/class-wp-rest-request.php index a0e67e5d4a..7148d931f7 100644 --- a/wp-includes/rest-api/class-wp-rest-request.php +++ b/wp-includes/rest-api/class-wp-rest-request.php @@ -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']; diff --git a/wp-includes/rest-api/class-wp-rest-server.php b/wp-includes/rest-api/class-wp-rest-server.php index 2de256113a..517ea27be6 100644 --- a/wp-includes/rest-api/class-wp-rest-server.php +++ b/wp-includes/rest-api/class-wp-rest-server.php @@ -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 ) { diff --git a/wp-includes/shortcodes.php b/wp-includes/shortcodes.php index 8132ebc15a..24c60b0021 100644 --- a/wp-includes/shortcodes.php +++ b/wp-includes/shortcodes.php @@ -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; diff --git a/wp-includes/template.php b/wp-includes/template.php index 7036bb0047..81b35fadf4 100644 --- a/wp-includes/template.php +++ b/wp-includes/template.php @@ -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' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index c410e4a10e..367b4e05ce 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.