mirror of
https://github.com/predis/predis.git
synced 2026-08-26 08:19:54 +00:00
11 lines
208 B
PHP
11 lines
208 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class Unsubscribe extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getCommandId() { return 'UNSUBSCRIBE'; }
|
|
}
|