Coding Standards: Fix params indentation in pre_get_network_by_path hook docblock.

See #55647.


git-svn-id: https://develop.svn.wordpress.org/trunk@53398 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jb Audras
2022-05-15 20:30:46 +00:00
parent 92e77c6793
commit a11fd0614d

View File

@@ -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 ) {