mirror of
https://github.com/predis/predis.git
synced 2026-08-20 15:51:51 +00:00
14 lines
310 B
PHP
14 lines
310 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Utils;
|
|
|
|
class GetMultiple extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getId() { return 'MGET'; }
|
|
public function filterArguments(Array $arguments) {
|
|
return Utils::filterArrayArguments($arguments);
|
|
}
|
|
}
|