1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace Predis\Command;
- class KeyRename extends AbstractCommand implements PrefixableCommandInterface
- {
-
- public function getId()
- {
- return 'RENAME';
- }
-
- public function prefixKeys($prefix)
- {
- PrefixHelpers::all($this, $prefix);
- }
- }
|