diff --git a/wp-includes/functions.wp-scripts.php b/wp-includes/functions.wp-scripts.php index 56f69861f3..c9acb98712 100644 --- a/wp-includes/functions.wp-scripts.php +++ b/wp-includes/functions.wp-scripts.php @@ -142,7 +142,7 @@ function wp_add_inline_script( $handle, $data, $position = 'after' ) { * @param string $handle Name of the script. Should be unique. * @param string|bool $src Full URL of the script, or path of the script relative to the WordPress root directory. * If source is set to false, script is an alias of other scripts it depends on. - * @param array $deps Optional. An array of registered script handles this script depends on. Default empty array. + * @param string[] $deps Optional. An array of registered script handles this script depends on. Default empty array. * @param string|bool|null $ver Optional. String specifying script version number, if it has one, which is added to the URL * as a query string for cache busting purposes. If version is set to false, a version * number is automatically added equal to current installed WordPress version. @@ -306,7 +306,7 @@ function wp_deregister_script( $handle ) { * @param string $handle Name of the script. Should be unique. * @param string $src Full URL of the script, or path of the script relative to the WordPress root directory. * Default empty. - * @param array $deps Optional. An array of registered script handles this script depends on. Default empty array. + * @param string[] $deps Optional. An array of registered script handles this script depends on. Default empty array. * @param string|bool|null $ver Optional. String specifying script version number, if it has one, which is added to the URL * as a query string for cache busting purposes. If version is set to false, a version * number is automatically added equal to current installed WordPress version. diff --git a/wp-includes/functions.wp-styles.php b/wp-includes/functions.wp-styles.php index 517aac8887..90ffff1e6b 100644 --- a/wp-includes/functions.wp-styles.php +++ b/wp-includes/functions.wp-styles.php @@ -112,7 +112,7 @@ function wp_add_inline_style( $handle, $data ) { * @param string $handle Name of the stylesheet. Should be unique. * @param string|bool $src Full URL of the stylesheet, or path of the stylesheet relative to the WordPress root directory. * If source is set to false, stylesheet is an alias of other stylesheets it depends on. - * @param array $deps Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array. + * @param string[] $deps Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array. * @param string|bool|null $ver Optional. String specifying stylesheet version number, if it has one, which is added to the URL * as a query string for cache busting purposes. If version is set to false, a version * number is automatically added equal to current installed WordPress version. @@ -157,7 +157,7 @@ function wp_deregister_style( $handle ) { * @param string $handle Name of the stylesheet. Should be unique. * @param string $src Full URL of the stylesheet, or path of the stylesheet relative to the WordPress root directory. * Default empty. - * @param array $deps Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array. + * @param string[] $deps Optional. An array of registered stylesheet handles this stylesheet depends on. Default empty array. * @param string|bool|null $ver Optional. String specifying stylesheet version number, if it has one, which is added to the URL * as a query string for cache busting purposes. If version is set to false, a version * number is automatically added equal to current installed WordPress version. diff --git a/wp-includes/version.php b/wp-includes/version.php index 01c2ef56e9..e66689aa4b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-46594'; +$wp_version = '5.4-alpha-46595'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.