for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spinen\Nable\Ncentral\Type;
use Phpro\SoapClient\Type\RequestInterface;
class PsaCredentialsValidate implements RequestInterface
{
/**
* @var string
*/
private $version;
private $username;
private $password;
* Constructor
*
* @var string $version
* @var string $username
* @var string $password
public function __construct($version, $username, $password)
$this->version = $version;
$this->username = $username;
$this->password = $password;
}
* @return string
public function getVersion()
return $this->version;
* @param string $version
* @return PsaCredentialsValidate
public function withVersion($version)
$new = clone $this;
$new->version = $version;
return $new;
public function getUsername()
return $this->username;
* @param string $username
public function withUsername($username)
$new->username = $username;
public function getPassword()
return $this->password;
* @param string $password
public function withPassword($password)
$new->password = $password;