mirror of
https://github.com/predis/predis.git
synced 2026-08-27 03:59:53 +00:00
c4064e5801
List of the commands affected by this change (based on Redis 2.2):
MSET, MGET, DEL, BLPOP, BRPOP, RPOPLPUSH, BRPOPLPUSH, SINTER, SINTERSTORE,
SUNION, SUNIONSTORE, SDIFF, SDIFFSTORE, ZINTERSTORE, ZUNIONSTORE.
8 lines
142 B
PHP
8 lines
142 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
class ListPopLastBlocking extends ListPopFirstBlocking {
|
|
public function getId() { return 'BRPOP'; }
|
|
}
|