for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spinen\Ncentral\Type;
class EiKeyValues
{
/**
* @var string
*/
private $key;
private $value;
* @return string
public function getKey()
return $this->key;
}
* @param string $key
* @return EiKeyValues
public function withKey($key)
$new = clone $this;
$new->key = $key;
return $new;
public function getValue()
return $this->value;
* @param string $value
public function withValue($value)
$new->value = $value;