mirror of
https://github.com/predis/predis.git
synced 2026-08-23 20:59:36 +00:00
14 lines
203 B
PHP
14 lines
203 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ServerConfig extends Command {
|
|
public function getId() {
|
|
return 'CONFIG';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
}
|