mirror of
https://github.com/predis/predis.git
synced 2026-08-25 03:59:39 +00:00
Rename method ICommand::getCommandId() to ICommand::getId().
This commit is contained in:
@@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user