mirror of
https://github.com/predis/predis.git
synced 2026-08-22 11:01:02 +00:00
8 lines
133 B
PHP
8 lines
133 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListPopLastPushHead extends Command {
|
|
public function getId() { return 'RPOPLPUSH'; }
|
|
}
|