Rename method ICommand::getCommandId() to ICommand::getId().

This commit is contained in:
Daniele Alessandri
2011-03-04 19:37:10 +01:00
parent 0d5fb3319d
commit 30bc53ee75
124 changed files with 124 additions and 124 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
namespace Predis\Commands;
class HashSetMultiple extends Command {
public function getCommandId() { return 'HMSET'; }
public function getId() { return 'HMSET'; }
public function filterArguments(Array $arguments) {
if (count($arguments) === 2 && is_array($arguments[1])) {
$flattenedKVs = array($arguments[0]);