Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions src/Redis.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
* @author Max Kamashev <max.kamashev@gmail.com>
* @link https://github.com/ukko/phpredis-phpdoc
*
* @method echo string $string Sends a string to Redis, which replies with the same string
*
* @method eval( $script, $args = array(), $numKeys = 0 )
* Evaluate a LUA script serverside
* @param string $script
Expand Down Expand Up @@ -202,6 +200,15 @@ public function getOption( $name ) {}
*/
public function ping( ) {}

/**
* Echo the given string
*
* @param string $message
* @return string: Returns message.
* @link http://redis.io/commands/echo
*/
public function echo( $message ) {}

/**
* Get the value related to the specified key
*
Expand Down