12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace Predis\Commands;
- class ListPopLastPushHead extends Command implements IPrefixable
- {
-
- public function getId()
- {
- return 'RPOPLPUSH';
- }
-
- public function prefixKeys($prefix)
- {
- PrefixHelpers::all($this, $prefix);
- }
-
- protected function canBeHashed()
- {
- return $this->checkSameHashForKeys($this->getArguments());
- }
- }
|