HashGetMultiple.php 290 B

123456789101112131415161718
  1. <?php
  2. namespace Predis\Commands;
  3. use Predis\Helpers;
  4. class HashGetMultiple extends Command
  5. {
  6. public function getId()
  7. {
  8. return 'HMGET';
  9. }
  10. protected function filterArguments(Array $arguments)
  11. {
  12. return Helpers::filterVariadicValues($arguments);
  13. }
  14. }