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
@@ -4,7 +4,7 @@ namespace Predis\Commands;
class BackgroundRewriteAppendOnlyFile extends Command {
public function canBeHashed() { return false; }
public function getCommandId() { return 'BGREWRITEAOF'; }
public function getId() { return 'BGREWRITEAOF'; }
public function parseResponse($data) {
return $data == 'Background append only file rewriting started';
}