From c29c6885c01e9fa882fd24296e991429f1dd058f Mon Sep 17 00:00:00 2001 From: audrasjb Date: Sun, 15 May 2022 20:32:08 +0000 Subject: [PATCH] Coding Standards: Fix params indentation in `pre_get_network_by_path` hook docblock. See #55647. Built from https://develop.svn.wordpress.org/trunk@53398 git-svn-id: http://core.svn.wordpress.org/trunk@52987 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-network.php | 12 ++++++------ wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/wp-includes/class-wp-network.php b/wp-includes/class-wp-network.php index 4881d91652..f9dfad0957 100644 --- a/wp-includes/class-wp-network.php +++ b/wp-includes/class-wp-network.php @@ -404,12 +404,12 @@ class WP_Network { * @since 3.9.0 * * @param null|false|WP_Network $network Network value to return by path. Default null - * to continue retrieving the network. - * @param string $domain The requested domain. - * @param string $path The requested path, in full. - * @param int|null $segments The suggested number of paths to consult. - * Default null, meaning the entire path was to be consulted. - * @param string[] $paths Array of paths to search for, based on `$path` and `$segments`. + * to continue retrieving the network. + * @param string $domain The requested domain. + * @param string $path The requested path, in full. + * @param int|null $segments The suggested number of paths to consult. + * Default null, meaning the entire path was to be consulted. + * @param string[] $paths Array of paths to search for, based on `$path` and `$segments`. */ $pre = apply_filters( 'pre_get_network_by_path', null, $domain, $path, $segments, $paths ); if ( null !== $pre ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 7afff1dbbb..f8f53aff6f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53397'; +$wp_version = '6.1-alpha-53398'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.