update ping doc

This commit is contained in:
Jiepeng Cao 2019-12-25 18:16:55 +08:00 committed by GitHub
parent 2a3c7655b4
commit 1a2e980295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -364,12 +364,14 @@ class Redis
/**
* Check the current connection status
*
* @return string STRING: +PONG on success.
* @param string $message
*
* @return bool|string TRUE if the command is successful or returns message
* Throws a RedisException object on connectivity error, as described above.
* @throws RedisException
* @link https://redis.io/commands/ping
*/
public function ping()
public function ping($message)
{
}