Преглед на файлове

Add Predis\Command\CommandInterface::setRawArguments().

Daniele Alessandri преди 12 години
родител
ревизия
c655affe5f
променени са 1 файла, в които са добавени 8 реда и са изтрити 1 реда
  1. 8 1
      lib/Predis/Command/CommandInterface.php

+ 8 - 1
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.
      *