1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace Predis\Commands;
- use Predis\Helpers;
- class PubSubSubscribe extends Command implements IPrefixable
- {
-
- public function getId()
- {
- return 'SUBSCRIBE';
- }
-
- protected function filterArguments(Array $arguments)
- {
- return Helpers::filterArrayArguments($arguments);
- }
-
- public function prefixKeys($prefix)
- {
- PrefixHelpers::all($this, $prefix);
- }
-
- protected function canBeHashed()
- {
- return false;
- }
- }
|