mirror of
https://github.com/predis/predis.git
synced 2026-08-20 14:52:05 +00:00
9 lines
190 B
PHP
9 lines
190 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class UnsubscribeByPattern extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getId() { return 'PUNSUBSCRIBE'; }
|
|
}
|