mirror of
https://github.com/predis/predis.git
synced 2026-09-04 23:08:00 +00:00
Fixed a leftover from a test. Oh well, this actually shows off how transparent can be switching from inline/bulk commands to multibulk commands.
This commit is contained in:
+2
-2
@@ -754,7 +754,7 @@ class Quit extends \Predis\InlineCommand {
|
||||
}
|
||||
|
||||
/* commands operating on string values */
|
||||
class Set extends \Predis\MultiBulkCommand {
|
||||
class Set extends \Predis\BulkCommand {
|
||||
public function getCommandId() { return 'SET'; }
|
||||
}
|
||||
|
||||
@@ -774,7 +774,7 @@ class SetMultiplePreserve extends \Predis\MultiBulkCommand {
|
||||
public function parseResponse($data) { return (bool) $data; }
|
||||
}
|
||||
|
||||
class Get extends \Predis\MultiBulkCommand {
|
||||
class Get extends \Predis\InlineCommand {
|
||||
public function getCommandId() { return 'GET'; }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user