PHPDoc for wp_clone. Props filosofo. fixes #8263
git-svn-id: http://svn.automattic.com/wordpress/trunk@9744 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
222159d16c
commit
e1fea167e6
|
@ -2881,8 +2881,18 @@ function wp_suspend_cache_invalidation($suspend = true) {
|
|||
return $current_suspend;
|
||||
}
|
||||
|
||||
/**
|
||||
* Copy an object.
|
||||
*
|
||||
* Returns a cloned copy of an object.
|
||||
*
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param object $object The object to clone
|
||||
* @return object The cloned object
|
||||
*/
|
||||
function wp_clone($object) {
|
||||
return version_compare(phpversion(), '5.0') < 0 ? $object : clone($object);
|
||||
return version_compare(phpversion(), '5.0') < 0 ? $object : clone($object);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue