mirror of
https://github.com/predis/predis.git
synced 2026-08-21 11:03:24 +00:00
9 lines
170 B
PHP
9 lines
170 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class Config extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getId() { return 'CONFIG'; }
|
|
}
|