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. */