Docs: Correct WP_Styles_Registry documentation.

This change updates the file’s docblock to correctly indicate `WordPress`/`Blocks` as the `@package`/`@subpackage`, updates the `_doing_it_wrong()` versions to `5.3.0` instead of the Gutenberg plugin versions, and removes some stray `gutenberg` text domains.

Props david.binda.
Fixes #48181.
Built from https://develop.svn.wordpress.org/trunk@46351


git-svn-id: http://core.svn.wordpress.org/trunk@46150 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2019-09-30 15:44:59 +00:00
parent 20e781f44d
commit abff73f0e0
2 changed files with 9 additions and 8 deletions

View File

@ -2,7 +2,8 @@
/**
* Blocks API: WP_Block_Styles_Registry class
*
* @package Gutenberg
* @package WordPress
* @subpackage Blocks
* @since 5.3.0
*/
@ -41,14 +42,14 @@ final class WP_Block_Styles_Registry {
public function register( $block_name, $style_properties ) {
if ( ! isset( $block_name ) || ! is_string( $block_name ) ) {
$message = __( 'Block name name must be a string.', 'gutenberg' );
_doing_it_wrong( __METHOD__, $message, '6.2.0' );
$message = __( 'Block name name must be a string.' );
_doing_it_wrong( __METHOD__, $message, '5.3.0' );
return false;
}
if ( ! isset( $style_properties['name'] ) || ! is_string( $style_properties['name'] ) ) {
$message = __( 'Block style name must be a string.', 'gutenberg' );
_doing_it_wrong( __METHOD__, $message, '6.2.0' );
$message = __( 'Block style name must be a string.' );
_doing_it_wrong( __METHOD__, $message, '5.3.0' );
return false;
}
@ -73,8 +74,8 @@ final class WP_Block_Styles_Registry {
public function unregister( $block_name, $block_style_name ) {
if ( ! $this->is_registered( $block_name, $block_style_name ) ) {
/* translators: 1: block name, 2: block style name */
$message = sprintf( __( 'Block "%1$s" does not contain a style named "%2$s.".', 'gutenberg' ), $block_name, $block_style_name );
_doing_it_wrong( __METHOD__, $message, '6.2.0' );
$message = sprintf( __( 'Block "%1$s" does not contain a style named "%2$s.".' ), $block_name, $block_style_name );
_doing_it_wrong( __METHOD__, $message, '5.3.0' );
return false;
}

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.3-beta1-46350';
$wp_version = '5.3-beta1-46351';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.