mirror of
https://github.com/predis/predis.git
synced 2026-08-22 13:41:57 +00:00
14 lines
258 B
PHP
14 lines
258 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListPopLastPushHead extends Command {
|
|
public function getId() {
|
|
return 'RPOPLPUSH';
|
|
}
|
|
|
|
protected function canBeHashed() {
|
|
return $this->checkSameHashForKeys($this->getArguments());
|
|
}
|
|
}
|