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

18 lines
294 B
PHP

<?php
namespace Predis\Commands;
class ServerConfig extends Command {
public function getId() {
return 'CONFIG';
}
protected function onPrefixKeys(Array $arguments, $prefix) {
/* NOOP */
}
protected function canBeHashed() {
return false;
}
}