mirror of
https://github.com/predis/predis.git
synced 2026-08-20 21:01:49 +00:00
10 lines
236 B
PHP
10 lines
236 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SetMove extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getId() { return 'SMOVE'; }
|
|
public function parseResponse($data) { return (bool) $data; }
|
|
}
|