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
@@ -6,7 +6,7 @@ use Predis\Commands\ICommand;
class TextCommandSerializer implements ICommandSerializer {
public function serialize(ICommand $command) {
$commandId = $command->getCommandId();
$commandId = $command->getId();
$arguments = $command->getArguments();
$cmdlen = strlen($commandId);