for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spinen\Ncentral\Type;
class EiCredentials
{
/**
* @var string
*/
private $password;
private $username;
* @return string
public function getPassword()
return $this->password;
}
* @param string $password
* @return EiCredentials
public function withPassword($password)
$new = clone $this;
$new->password = $password;
return $new;
public function getUsername()
return $this->username;
* @param string $username
public function withUsername($username)
$new->username = $username;