From 2682f974f2441e428d39998346b589385ed63ed2 Mon Sep 17 00:00:00 2001 From: Rodrigo Gonzalez Date: Fri, 5 Apr 2024 12:08:22 -0300 Subject: [PATCH] Fixed an error with PHP 8.1 --- src/Config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Config.php b/src/Config.php index e007d20..03fc972 100644 --- a/src/Config.php +++ b/src/Config.php @@ -126,7 +126,7 @@ class Config implements ConfigInterface */ public function getApiToken() { - return $this->apiVersion; + return $this->apiToken; } /** @@ -134,7 +134,7 @@ class Config implements ConfigInterface */ public function setApiToken($apiToken) { - $this->apiVersion = $apiToken; + $this->apiToken = $apiToken; return $this; } @@ -144,7 +144,7 @@ class Config implements ConfigInterface */ public function getLogRequests() { - return $this->logRequests; + return $this->logRequests; } /**