From d5827cb9701ed0baa6fc71237fcc73f1cae1e5ff Mon Sep 17 00:00:00 2001 From: Rob Desilets Date: Thu, 17 Feb 2022 09:09:41 -0600 Subject: [PATCH] Fixed bug where it was not properly referencing config --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 0942c62..00d81d4 100644 --- a/src/Client.php +++ b/src/Client.php @@ -140,7 +140,7 @@ class Client public function getKeyLength(): int { - return $config['key_length'] ?? 4096; + return $this->config['key_length'] ?? 4096; } /**