diff --git a/src/Omnipay/Common/AbstractGateway.php b/src/Omnipay/Common/AbstractGateway.php index f982c5d2..4e13e725 100644 --- a/src/Omnipay/Common/AbstractGateway.php +++ b/src/Omnipay/Common/AbstractGateway.php @@ -126,7 +126,7 @@ public function getParameters() * @param string $key * @return mixed */ - protected function getParameter($key) + public function getParameter($key) { return $this->parameters->get($key); } @@ -136,7 +136,7 @@ protected function getParameter($key) * @param mixed $value * @return $this */ - protected function setParameter($key, $value) + public function setParameter($key, $value) { $this->parameters->set($key, $value);