Renamed a method of CommandPipeline to a more appropriate name

This commit is contained in:
Daniele Alessandri
2009-11-09 19:50:22 +01:00
parent 4755c88c4a
commit 25d995942d
+2 -2
View File
@@ -501,10 +501,10 @@ class CommandPipeline {
public function __call($method, $arguments) {
$command = $this->_redisClient->createCommandInstance($method, $arguments);
$this->registerCommand($command);
$this->recordCommand($command);
}
private function registerCommand(Command $command) {
private function recordCommand(Command $command) {
$this->_pipelineBuffer[] = $command;
}