mirror of
https://github.com/predis/predis.git
synced 2026-08-28 03:02:04 +00:00
8 lines
137 B
PHP
8 lines
137 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListPopFirstBlocking extends Command {
|
|
public function getCommandId() { return 'BLPOP'; }
|
|
}
|