Skip to content

Commit

Permalink
Merge branch 'b15011202'
Browse files Browse the repository at this point in the history
  • Loading branch information
ibrahimgunduz34 committed Jan 12, 2015
2 parents 9bed5d1 + 9968301 commit 162a0b8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Paranoia/Configuration/Est.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class Est extends AbstractConfiguration
public function setClientId($clientId)
{
$this->clientId = $clientId;
return $this;
}

/**
Expand All @@ -47,6 +48,7 @@ public function getClientId()
public function setMode($mode)
{
$this->mode = $mode;
return $this;
}

/**
Expand All @@ -63,6 +65,7 @@ public function getMode()
public function setPassword($password)
{
$this->password = $password;
return $this;
}

/**
Expand All @@ -79,6 +82,7 @@ public function getPassword()
public function setUsername($username)
{
$this->username = $username;
return $this;
}

/**
Expand Down
7 changes: 7 additions & 0 deletions src/Paranoia/Configuration/Gvp.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class Gvp extends AbstractConfiguration
public function setAuthorizationPassword($authorizationPassword)
{
$this->authorizationPassword = $authorizationPassword;
return $this;
}

/**
Expand All @@ -63,6 +64,7 @@ public function getAuthorizationPassword()
public function setAuthorizationUsername($authorizationUsername)
{
$this->authorizationUsername = $authorizationUsername;
return $this;
}

/**
Expand All @@ -79,6 +81,7 @@ public function getAuthorizationUsername()
public function setMerchantId($merchantId)
{
$this->merchantId = $merchantId;
return $this;
}

/**
Expand All @@ -95,6 +98,7 @@ public function getMerchantId()
public function setMode($mode)
{
$this->mode = $mode;
return $this;
}

/**
Expand All @@ -111,6 +115,7 @@ public function getMode()
public function setRefundPassword($refundPassword)
{
$this->refundPassword = $refundPassword;
return $this;
}

/**
Expand All @@ -127,6 +132,7 @@ public function getRefundPassword()
public function setRefundUsername($refundUsername)
{
$this->refundUsername = $refundUsername;
return $this;
}

/**
Expand All @@ -143,6 +149,7 @@ public function getRefundUsername()
public function setTerminalId($terminalId)
{
$this->terminalId = $terminalId;
return $this;
}

/**
Expand Down
4 changes: 4 additions & 0 deletions src/Paranoia/Configuration/Posnet.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class Posnet extends AbstractConfiguration
public function setClientId($clientId)
{
$this->clientId = $clientId;
return $this;
}

/**
Expand All @@ -48,6 +49,7 @@ public function getClientId()
public function setPassword($password)
{
$this->password = $password;
return $this;
}

/**
Expand All @@ -64,6 +66,7 @@ public function getPassword()
public function setTerminalId($terminalId)
{
$this->terminalId = $terminalId;
return $this;
}

/**
Expand All @@ -80,6 +83,7 @@ public function getTerminalId()
public function setUsername($username)
{
$this->username = $username;
return $this;
}

/**
Expand Down

0 comments on commit 162a0b8

Please sign in to comment.