Files
predis/lib/Predis/Commands/StringGetMultiple.php
T
2011-04-25 12:39:21 +02:00

20 lines
393 B
PHP

<?php
namespace Predis\Commands;
use Predis\Helpers;
class StringGetMultiple extends Command {
public function getId() {
return 'MGET';
}
public function filterArguments(Array $arguments) {
return Helpers::filterArrayArguments($arguments);
}
protected function canBeHashed() {
return $this->checkSameHashForKeys($this->getArguments());
}
}