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