mirror of
https://github.com/predis/predis.git
synced 2026-08-22 13:00:58 +00:00
14 lines
223 B
PHP
14 lines
223 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class PubSubUnsubscribeByPattern extends Command {
|
|
public function getId() {
|
|
return 'PUNSUBSCRIBE';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
}
|