1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace Predis\Command;
- class ListPopLastPushHeadBlocking extends AbstractCommand implements PrefixableCommandInterface
- {
-
- public function getId()
- {
- return 'BRPOPLPUSH';
- }
-
- public function prefixKeys($prefix)
- {
- PrefixHelpers::skipLast($this, $prefix);
- }
- }
|