We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75badc4 commit 46b438aCopy full SHA for 46b438a
Gateway/Config/Config.php
@@ -82,14 +82,20 @@ public function getActive()
82
return $this->getValue('active');
83
}
84
85
+ /**
86
+ * @return string
87
+ */
88
public function getClientId()
89
{
- return $this->getValue('client_id');
90
+ return (string) $this->getValue('client_id');
91
92
93
94
95
96
public function getClientSecret()
97
- return $this->getValue('client_secret');
98
+ return (string) $this->getValue('client_secret');
99
100
101
public function getSignature()
0 commit comments