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.
2 parents d9580b1 + 8f2fd68 commit a303edaCopy full SHA for a303eda
src/AbstractGateway.php
@@ -107,6 +107,7 @@ public function getDefaultParameters()
107
{
108
return array(
109
'apiKey' => '',
110
+ 'stripeVersion' => null
111
);
112
}
113
@@ -150,6 +151,24 @@ public function setApiKey($value)
150
151
return $this->setParameter('apiKey', $value);
152
153
154
+ /**
155
+ * @return string
156
+ */
157
+ public function getStripeVersion()
158
+ {
159
+ return $this->getParameter('stripeVersion');
160
+ }
161
+
162
163
+ * @param string $value
164
+ *
165
+ * @return Gateway
166
167
+ public function setStripeVersion($value)
168
169
+ return $this->setParameter('stripeVersion', $value);
170
171
172
/**
173
* Authorize Request.
174
*
0 commit comments