12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace Predis\Command;
- class SetMove extends AbstractCommand implements PrefixableCommandInterface
- {
-
- public function getId()
- {
- return 'SMOVE';
- }
-
- public function prefixKeys($prefix)
- {
- PrefixHelpers::skipLast($this, $prefix);
- }
-
- public function parseResponse($data)
- {
- return (bool) $data;
- }
- }
|