for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Paranoia\Configuration;
class NestPay extends AbstractConfiguration
{
/**
* @var string
*/
private $clientId;
private $username;
private $password;
private $mode;
* @param string $clientId
*
* @return $this
public function setClientId($clientId)
$this->clientId = $clientId;
return $this;
}
* @return string
public function getClientId()
return $this->clientId;
* @param string $mode
public function setMode($mode)
$this->mode = $mode;
public function getMode()
return $this->mode;
* @param string $password
public function setPassword($password)
$this->password = $password;
public function getPassword()
return $this->password;
* @param string $username
public function setUsername($username)
$this->username = $username;
public function getUsername()
return $this->username;