MGDigital\BusQue\Redis\PHPRedis\PHPRedisAdapter::lLen PHP Method

lLen() public method

public lLen ( string $key ) : integer
$key string
return integer
    public function lLen(string $key) : int
    {
        return $this->tryCatch(function () use($key) {
            return $this->redis->lLen($key);
        });
    }