mirror of
https://github.com/predis/predis.git
synced 2026-08-20 03:11:48 +00:00
8 lines
121 B
PHP
8 lines
121 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListPopFirst extends Command {
|
|
public function getId() { return 'LPOP'; }
|
|
}
|