mirror of
https://github.com/predis/predis.git
synced 2026-08-23 00:01:09 +00:00
20 lines
351 B
PHP
20 lines
351 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Helpers;
|
|
|
|
class PubSubSubscribe extends Command {
|
|
public function getId() {
|
|
return 'SUBSCRIBE';
|
|
}
|
|
|
|
public function filterArguments(Array $arguments) {
|
|
return Helpers::filterArrayArguments($arguments);
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return false;
|
|
}
|
|
}
|