Files
predis/lib/Predis/Commands/GetMultiple.php
T

20 lines
383 B
PHP

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