mirror of
https://github.com/predis/predis.git
synced 2026-08-21 19:41:29 +00:00
14 lines
207 B
PHP
14 lines
207 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class Unsubscribe extends Command {
|
|
public function getId() {
|
|
return 'UNSUBSCRIBE';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
}
|