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

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());
}
}