mirror of
https://github.com/predis/predis.git
synced 2026-08-22 02:50:59 +00:00
9 lines
180 B
PHP
9 lines
180 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class Unsubscribe extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getId() { return 'UNSUBSCRIBE'; }
|
|
}
|