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