From fe7a3ab5d956e1fcf79ea61b3bffb85af63d4e78 Mon Sep 17 00:00:00 2001 From: Ryan McCue Date: Mon, 6 Jun 2016 03:59:28 +0000 Subject: [PATCH] Autoload: Add missed @since tags to SPL shim. See #36926. Built from https://develop.svn.wordpress.org/trunk@37637 git-svn-id: http://core.svn.wordpress.org/trunk@37605 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/compat.php | 8 ++++++++ wp-includes/version.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/wp-includes/compat.php b/wp-includes/compat.php index 64f4ba5170..3e30827675 100644 --- a/wp-includes/compat.php +++ b/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() { diff --git a/wp-includes/version.php b/wp-includes/version.php index cd7ec9e462..e3ae7b1340 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37636'; +$wp_version = '4.6-alpha-37637'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.