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

11 lines
198 B
PHP

<?php
namespace Predis\Commands;
use Predis\Command;
class Rename extends Command {
public function canBeHashed() { return false; }
public function getCommandId() { return 'RENAME'; }
}