mirror of
https://github.com/predis/predis.git
synced 2026-08-26 18:29:57 +00:00
18 lines
332 B
PHP
18 lines
332 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class SubscribeByPattern extends Command {
|
|
public function getId() {
|
|
return 'PSUBSCRIBE';
|
|
}
|
|
|
|
public function filterArguments(Array $arguments) {
|
|
return Utils::filterArrayArguments($arguments);
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
}
|