Skip to content

Commit

Permalink
Merge pull request JetBrains#724 from xiaoliwang/patch-1
Browse files Browse the repository at this point in the history
update ping doc
  • Loading branch information
isfedorov authored Dec 25, 2019
2 parents 2a3c765 + 1a2e980 commit ae4b75f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions redis/Redis.php
Original file line number Diff line number Diff line change
Expand Up @@ -364,12 +364,14 @@ public function getOption($option)
/**
* 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)
{
}

Expand Down

0 comments on commit ae4b75f

Please sign in to comment.