Skip to content

Commit

Permalink
Resolves lulco#10
Browse files Browse the repository at this point in the history
  • Loading branch information
riki137 committed Apr 26, 2022
1 parent d0361a6 commit 0989f62
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/RedisProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -916,6 +916,12 @@ public function zrevrank(string $key, string $member): ?int
return $this->convertFalseToNull($result);
}

public function zrangebyscore(string $key, int $start, int $end, array $options = []): array
{
$this->init();
return $this->driver->zrangebyscore($key, $start, $end, $options);
}

/**
* Returns null instead of false for Redis driver
* @param mixed $result
Expand Down

0 comments on commit 0989f62

Please sign in to comment.