Rename.php 198 B

12345678910
  1. <?php
  2. namespace Predis\Commands;
  3. use Predis\Command;
  4. class Rename extends Command {
  5. public function canBeHashed() { return false; }
  6. public function getCommandId() { return 'RENAME'; }
  7. }