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
This commit is contained in:
Ryan McCue 2016-06-06 03:59:28 +00:00
parent 0def38c30b
commit fe7a3ab5d9
2 changed files with 9 additions and 1 deletions

View File

@ -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() {

View File

@ -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.