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:
parent
0def38c30b
commit
fe7a3ab5d9
|
@ -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() {
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue