mirror of
https://github.com/predis/predis.git
synced 2026-08-24 20:39:42 +00:00
Add Predis\Command\CommandInterface::setRawArguments().
This commit is contained in:
@@ -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.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user