Delete.php 278 B

12345678910111213
  1. <?php
  2. namespace Predis\Commands;
  3. use Predis\Utils;
  4. use Predis\Command;
  5. class Delete extends Command {
  6. public function getCommandId() { return 'DEL'; }
  7. public function filterArguments(Array $arguments) {
  8. return Utils::filterArrayArguments($arguments);
  9. }
  10. }