From f08e167be8c1789c621d7870e081c7ea206ed682 Mon Sep 17 00:00:00 2001 From: Ryan McCue Date: Mon, 6 Jun 2016 03:58:10 +0000 Subject: [PATCH] Autoload: Add missed @since tags to SPL shim. See #36926. git-svn-id: https://develop.svn.wordpress.org/trunk@37637 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/compat.php | 8 ++++++++ 1 file changed, 8 insertions(+) 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() {