Skip to content

Commit

Permalink
Merge pull request #45 from bryglen/master
Browse files Browse the repository at this point in the history
#44 change protected into public method
  • Loading branch information
greydnls committed Jul 23, 2015
2 parents 0ee00e2 + 03c2c7a commit 77eba5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Omnipay/Common/AbstractGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand All @@ -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);

Expand Down

0 comments on commit 77eba5e

Please sign in to comment.