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

See #32246


git-svn-id: https://develop.svn.wordpress.org/trunk@35913 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2015-12-14 02:38:10 +00:00
parent f4c5b65138
commit cb068034ee
1 changed files with 2 additions and 1 deletions

View File

@ -2017,7 +2017,8 @@ if ( !function_exists('wp_hash') ) :
* *
* @since 2.0.3 * @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 * @return string Hash of $data
*/ */
function wp_hash($data, $scheme = 'auth') { function wp_hash($data, $scheme = 'auth') {