Files
predis/lib/Predis/Commands/Subscribe.php
T

11 lines
204 B
PHP

<?php
namespace Predis\Commands;
use Predis\Command;
class Subscribe extends Command {
public function canBeHashed() { return false; }
public function getCommandId() { return 'SUBSCRIBE'; }
}