Docs: Various docblock corrections.

See #60699

Built from https://develop.svn.wordpress.org/trunk@58073


git-svn-id: http://core.svn.wordpress.org/trunk@57538 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2024-05-02 00:01:09 +00:00
parent f56cc47de9
commit 9e7d08b60d
8 changed files with 13 additions and 13 deletions

View File

@ -917,7 +917,7 @@ function install_plugin_information() {
* } * }
* @param bool $compatible_php The result of a PHP compatibility check. * @param bool $compatible_php The result of a PHP compatibility check.
* @param bool $compatible_wp The result of a WP compatibility check. * @param bool $compatible_wp The result of a WP compatibility check.
* @return string $button The markup for the dependency row button. * @return string The markup for the dependency row button.
*/ */
function wp_get_plugin_action_button( $name, $data, $compatible_php, $compatible_wp ) { function wp_get_plugin_action_button( $name, $data, $compatible_php, $compatible_wp ) {
$button = ''; $button = '';

View File

@ -76,7 +76,7 @@
* The array of arguments that are used to register a source. * The array of arguments that are used to register a source.
* *
* @type string $label The label of the source. * @type string $label The label of the source.
* @type callback $get_value_callback A callback executed when the source is processed during block rendering. * @type callable $get_value_callback A callback executed when the source is processed during block rendering.
* The callback should have the following signature: * The callback should have the following signature:
* *
* `function ($source_args, $block_instance,$attribute_name): mixed` * `function ($source_args, $block_instance,$attribute_name): mixed`

View File

@ -79,7 +79,7 @@ final class WP_Block_Bindings_Registry {
* The array of arguments that are used to register a source. * The array of arguments that are used to register a source.
* *
* @type string $label The label of the source. * @type string $label The label of the source.
* @type callback $get_value_callback A callback executed when the source is processed during block rendering. * @type callable $get_value_callback A callback executed when the source is processed during block rendering.
* The callback should have the following signature: * The callback should have the following signature:
* *
* `function ($source_args, $block_instance,$attribute_name): mixed` * `function ($source_args, $block_instance,$attribute_name): mixed`

View File

@ -302,7 +302,7 @@ class WP_Block_Type {
* Deprecated the `editor_script`, `script`, `view_script`, `editor_style`, and `style` properties. * Deprecated the `editor_script`, `script`, `view_script`, `editor_style`, and `style` properties.
* @since 6.3.0 Added the `selectors` property. * @since 6.3.0 Added the `selectors` property.
* @since 6.4.0 Added the `block_hooks` property. * @since 6.4.0 Added the `block_hooks` property.
* @since 6.5.0 Added the `view_style_handles` property. * @since 6.5.0 Added the `allowed_blocks`, `variation_callback`, and `view_style_handles` properties.
* *
* @see register_block_type() * @see register_block_type()
* *
@ -621,7 +621,7 @@ class WP_Block_Type {
* *
* @since 6.5.0 * @since 6.5.0
* *
* @return array[] * @return string[]
*/ */
public function get_uses_context() { public function get_uses_context() {
/** /**
@ -629,7 +629,7 @@ class WP_Block_Type {
* *
* @since 6.5.0 * @since 6.5.0
* *
* @param array $uses_context Array of registered uses context for a block type. * @param string[] $uses_context Array of registered uses context for a block type.
* @param WP_Block_Type $block_type The full block type object. * @param WP_Block_Type $block_type The full block type object.
*/ */
return apply_filters( 'get_block_type_uses_context', $this->uses_context, $this ); return apply_filters( 'get_block_type_uses_context', $this->uses_context, $this );

View File

@ -553,8 +553,6 @@ class WP_Plugin_Dependencies {
* Reads and stores dependency slugs from a plugin's 'Requires Plugins' header. * Reads and stores dependency slugs from a plugin's 'Requires Plugins' header.
* *
* @since 6.5.0 * @since 6.5.0
*
* @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass.
*/ */
protected static function read_dependencies_from_plugin_headers() { protected static function read_dependencies_from_plugin_headers() {
self::$dependencies = array(); self::$dependencies = array();

View File

@ -15,11 +15,13 @@
* @param array[][] $fonts { * @param array[][] $fonts {
* Optional. The font-families and their font faces. Default empty array. * Optional. The font-families and their font faces. Default empty array.
* *
* @type array { * @type array ...$0 {
* An indexed or associative (keyed by font-family) array of font variations for this font-family. * An indexed or associative (keyed by font-family) array of font variations for this font-family.
* Each font face has the following structure. * Each font face has the following structure.
* *
* @type array { * @type array ...$0 {
* The font face properties.
*
* @type string $font-family The font-family property. * @type string $font-family The font-family property.
* @type string|string[] $src The URL(s) to each resource containing the font data. * @type string|string[] $src The URL(s) to each resource containing the font data.
* @type string $font-style Optional. The font-style property. Default 'normal'. * @type string $font-style Optional. The font-style property. Default 'normal'.

View File

@ -221,8 +221,8 @@ class WP_Font_Utils {
* *
* @since 6.5.0 * @since 6.5.0
* *
* @param mixed $value The value to sanitize. * @param mixed $value The value to sanitize.
* @param mixed $sanitizer The sanitizer function to apply. * @param callable $sanitizer The sanitizer function to apply.
* @return mixed The sanitized value. * @return mixed The sanitized value.
*/ */
private static function apply_sanitizer( $value, $sanitizer ) { private static function apply_sanitizer( $value, $sanitizer ) {

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.6-alpha-58072'; $wp_version = '6.6-alpha-58073';
/** /**
* 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.