More Oops.

This commit is contained in:
Greyscale 2020-12-06 19:48:22 +01:00
parent a5ebeb7e5f
commit 656bf76352

View file

@ -71,10 +71,10 @@ class Redis
public function initialiseExtensions(): void
{
$this->scripts[] = new Lua\SetIfHigher($this->redis);
$this->scripts[] = new Lua\SetIfLower($this->redis);
$this->scripts[] = new Lua\ZAddIfHigher($this->redis);
$this->scripts[] = new Lua\ZAddIfLower($this->redis);
$this->scripts[] = new Lua\SetIfHigher($this);
$this->scripts[] = new Lua\SetIfLower($this);
$this->scripts[] = new Lua\ZAddIfHigher($this);
$this->scripts[] = new Lua\ZAddIfLower($this);
}
public function connect($host, $port = 6379, $timeout = 0.0, $reserved = null, $retryInterval = 0, $readTimeout = 0.0): void