Docs: Misc docblock corrections and improvements.

See #49572
Built from https://develop.svn.wordpress.org/trunk@47754


git-svn-id: http://core.svn.wordpress.org/trunk@47530 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2020-05-03 19:38:08 +00:00
parent ac3c2fe60a
commit 717f0d0a3e
4 changed files with 6 additions and 5 deletions

View File

@ -43,6 +43,7 @@ final class WP_Block_Type_Registry {
* *
* @type callable $render_callback Callback used to render blocks of this block type. * @type callable $render_callback Callback used to render blocks of this block type.
* @type array $attributes Block attributes mapping, property name to schema. * @type array $attributes Block attributes mapping, property name to schema.
* Accepts any public property of `WP_Block_Type`.
* } * }
* @return WP_Block_Type|false The registered block type on success, or false on failure. * @return WP_Block_Type|false The registered block type on success, or false on failure.
*/ */

View File

@ -130,8 +130,8 @@ function wp_schedule_single_event( $timestamp, $hook, $args = array() ) {
* *
* @since 3.1.0 * @since 3.1.0
* *
* @param stdClass $event { * @param stdClass|false $event {
* An object containing an event's data. * An object containing an event's data, or boolean false to prevent the event from being scheduled.
* *
* @type string $hook Action hook to execute when the event is run. * @type string $hook Action hook to execute when the event is run.
* @type int $timestamp Unix timestamp (UTC) for when to next run the event. * @type int $timestamp Unix timestamp (UTC) for when to next run the event.

View File

@ -176,8 +176,8 @@ function add_user_to_blog( $blog_id, $user_id, $role ) {
* *
* @since 4.9.0 * @since 4.9.0
* *
* @param bool|WP_Error $retval True if the user should be added to the site, false * @param true|WP_Error $retval True if the user should be added to the site, error
* or error object otherwise. * object otherwise.
* @param int $user_id User ID. * @param int $user_id User ID.
* @param string $role User role. * @param string $role User role.
* @param int $blog_id Site ID. * @param int $blog_id Site ID.

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.5-alpha-47753'; $wp_version = '5.5-alpha-47754';
/** /**
* 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.