Fixed bug where it was not properly referencing config

This commit is contained in:
Rob Desilets
2022-02-17 09:09:41 -06:00
parent bd83867dcf
commit d5827cb970

View File

@@ -140,7 +140,7 @@ class Client
public function getKeyLength(): int public function getKeyLength(): int
{ {
return $config['key_length'] ?? 4096; return $this->config['key_length'] ?? 4096;
} }
/** /**