Make WordPress Core

Changeset 59787


Ignore:
Timestamp:
02/08/2025 03:09:41 PM (9 months ago)
Author:
audrasjb
Message:

Docs: Fix Docblock parameters indentation for wp_determine_option_autoload_value(), as per WP Docs standards.

See #62281.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/option.php

    r59735 r59787  
    12931293 * @access private
    12941294 *
    1295  * @param string $option          The name of the option.
    1296  * @param mixed $value            The value of the option to check its autoload value.
    1297  * @param mixed $serialized_value The serialized value of the option to check its autoload value.
    1298  * @param bool|null $autoload     The autoload value to check.
    1299  *                                Accepts 'on'|true to enable or 'off'|false to disable, or
    1300  *                                'auto-on', 'auto-off', or 'auto' for internal purposes.
    1301  *                                Any other autoload value will be forced to either 'auto-on',
    1302  *                                'auto-off', or 'auto'.
    1303  *                                'yes' and 'no' are supported for backward compatibility.
     1295 * @param string    $option           The name of the option.
     1296 * @param mixed     $value            The value of the option to check its autoload value.
     1297 * @param mixed     $serialized_value The serialized value of the option to check its autoload value.
     1298 * @param bool|null $autoload         The autoload value to check.
     1299 *                                    Accepts 'on'|true to enable or 'off'|false to disable, or
     1300 *                                    'auto-on', 'auto-off', or 'auto' for internal purposes.
     1301 *                                    Any other autoload value will be forced to either 'auto-on',
     1302 *                                    'auto-off', or 'auto'.
     1303 *                                    'yes' and 'no' are supported for backward compatibility.
    13041304 * @return string Returns the original $autoload value if explicit, or 'auto-on', 'auto-off',
    13051305 *                or 'auto' depending on default heuristics.
Note: See TracChangeset for help on using the changeset viewer.