Files
predis/lib/Predis/Commands/Subscribe.php
T
2011-03-27 18:50:55 +02:00

14 lines
315 B
PHP

<?php
namespace Predis\Commands;
use Predis\Utils;
class Subscribe extends Command {
protected function canBeHashed() { return false; }
public function getId() { return 'SUBSCRIBE'; }
public function filterArguments(Array $arguments) {
return Utils::filterArrayArguments($arguments);
}
}