From e9b075e543a603b799a3af8d344330246372374e Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Sat, 8 Feb 2025 15:09:41 +0000 Subject: [PATCH] Docs: Fix Docblock parameters indentation for `wp_determine_option_autoload_value()`, as per WP Docs standards. See #62281. git-svn-id: https://develop.svn.wordpress.org/trunk@59787 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/option.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/wp-includes/option.php b/src/wp-includes/option.php index 8114b51bc7499..cff8e352de809 100644 --- a/src/wp-includes/option.php +++ b/src/wp-includes/option.php @@ -1292,15 +1292,15 @@ function delete_option( $option ) { * @since 6.6.0 * @access private * - * @param string $option The name of the option. - * @param mixed $value The value of the option to check its autoload value. - * @param mixed $serialized_value The serialized value of the option to check its autoload value. - * @param bool|null $autoload The autoload value to check. - * Accepts 'on'|true to enable or 'off'|false to disable, or - * 'auto-on', 'auto-off', or 'auto' for internal purposes. - * Any other autoload value will be forced to either 'auto-on', - * 'auto-off', or 'auto'. - * 'yes' and 'no' are supported for backward compatibility. + * @param string $option The name of the option. + * @param mixed $value The value of the option to check its autoload value. + * @param mixed $serialized_value The serialized value of the option to check its autoload value. + * @param bool|null $autoload The autoload value to check. + * Accepts 'on'|true to enable or 'off'|false to disable, or + * 'auto-on', 'auto-off', or 'auto' for internal purposes. + * Any other autoload value will be forced to either 'auto-on', + * 'auto-off', or 'auto'. + * 'yes' and 'no' are supported for backward compatibility. * @return string Returns the original $autoload value if explicit, or 'auto-on', 'auto-off', * or 'auto' depending on default heuristics. */