mirror of
https://github.com/predis/predis.git
synced 2026-08-24 01:39:36 +00:00
18 lines
278 B
PHP
18 lines
278 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class Unwatch extends Command {
|
|
public function getId() {
|
|
return 'UNWATCH';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
|
|
public function parseResponse($data) {
|
|
return (bool) $data;
|
|
}
|
|
}
|