Add missing `@param` doc to `wp_hash()`.

See #32246

Built from https://develop.svn.wordpress.org/trunk@35913


git-svn-id: http://core.svn.wordpress.org/trunk@35877 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2015-12-14 02:39:26 +00:00
parent c2248060fe
commit 9f7165d522
2 changed files with 3 additions and 2 deletions

View File

@ -2017,7 +2017,8 @@ if ( !function_exists('wp_hash') ) :
*
* @since 2.0.3
*
* @param string $data Plain text to hash
* @param string $data Plain text to hash
* @param string $scheme Authentication scheme (auth, secure_auth, logged_in, nonce)
* @return string Hash of $data
*/
function wp_hash($data, $scheme = 'auth') {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-alpha-35912';
$wp_version = '4.5-alpha-35913';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.