Implement Predis\Commands\Command::setRawArguments().

This commit is contained in:
Daniele Alessandri
2011-05-04 18:52:26 +02:00
parent 5a80876c64
commit b47a3f9ab8
+5
View File
@@ -18,6 +18,11 @@ abstract class Command implements ICommand {
unset($this->_hash);
}
public function setRawArguments(Array $arguments) {
$this->_arguments = $arguments;
unset($this->_hash);
}
public function getArguments() {
return $this->_arguments;
}