diff --git a/src/wp-includes/compat.php b/src/wp-includes/compat.php index 64f4ba5170..3e30827675 100644 --- a/src/wp-includes/compat.php +++ b/src/wp-includes/compat.php @@ -442,6 +442,8 @@ if ( ! function_exists( 'spl_autoload_register' ) ): /** * Autoloader compatibility callback. * + * @since 4.6.0 + * * @param string $classname Class to attempt autoloading. */ function __autoload( $classname ) { @@ -464,6 +466,8 @@ if ( ! function_exists( 'spl_autoload_register' ) ): /** * Register a function to be autoloaded. * + * @since 4.6.0 + * * @param callable $autoload_function The function to register. * @param boolean $throw Should the function throw an exception if the function isn't callable? * @param boolean $prepend Should we prepend the function to the stack? @@ -491,6 +495,8 @@ if ( ! function_exists( 'spl_autoload_register' ) ): /** * Unregister an autoloader function. * + * @since 4.6.0 + * * @param callable $function The function to unregister. * @return boolean True if the function was unregistered, false if it could not be. */ @@ -509,6 +515,8 @@ if ( ! function_exists( 'spl_autoload_register' ) ): /** * Get the registered autoloader functions. * + * @since 4.6.0 + * * @return array List of autoloader functions. */ function spl_autoload_functions() {