mirror of
https://github.com/predis/predis.git
synced 2026-08-21 20:00:56 +00:00
8 lines
130 B
PHP
8 lines
130 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListPopFirstBlocking extends Command {
|
|
public function getId() { return 'BLPOP'; }
|
|
}
|