We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e44e92d + 34bf742 commit 57c7a9fCopy full SHA for 57c7a9f
src/Redis.php
@@ -4,8 +4,6 @@
4
* @author Max Kamashev <[email protected]>
5
* @link https://github.com/ukko/phpredis-phpdoc
6
*
7
- * @method echo string $string Sends a string to Redis, which replies with the same string
8
- *
9
* @method eval( $script, $args = array(), $numKeys = 0 )
10
* Evaluate a LUA script serverside
11
* @param string $script
@@ -202,6 +200,15 @@ public function getOption( $name ) {}
202
200
*/
203
201
public function ping( ) {}
204
+ /**
+ * Echo the given string
205
+ *
206
+ * @param string $message
207
+ * @return string: Returns message.
208
+ * @link http://redis.io/commands/echo
209
+ */
210
+ public function echo( $message ) {}
211
+
212
/**
213
* Get the value related to the specified key
214
0 commit comments