mirror of
https://github.com/predis/predis.git
synced 2026-08-31 04:35:05 +00:00
Renamed a method of CommandPipeline to a more appropriate name
This commit is contained in:
+2
-2
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user