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