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