From c655affe5fa99e27c5ac514c2edc7ae006d497c9 Mon Sep 17 00:00:00 2001 From: Daniele Alessandri Date: Fri, 24 Aug 2012 11:47:44 +0200 Subject: [PATCH] Add Predis\Command\CommandInterface::setRawArguments(). --- lib/Predis/Command/CommandInterface.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/Predis/Command/CommandInterface.php b/lib/Predis/Command/CommandInterface.php index d995da73..69912282 100644 --- a/lib/Predis/Command/CommandInterface.php +++ b/lib/Predis/Command/CommandInterface.php @@ -39,12 +39,19 @@ interface CommandInterface public function getHash(); /** - * Sets the arguments of the command. + * Sets the arguments for the command. * * @param array $arguments List of arguments. */ public function setArguments(Array $arguments); + /** + * Sets the raw arguments for the command without processing them. + * + * @param array $arguments List of arguments. + */ + public function setRawArguments(Array $arguments); + /** * Gets the arguments of the command. *